15 lines
407 B
Bash
Executable File
15 lines
407 B
Bash
Executable File
#!/bin/sh
|
|
# This script moves all {name}.new.png files to {name}.png.
|
|
# Its main use is in the update_kittest_snapshots CI job, but you can also use it locally.
|
|
|
|
set -eu
|
|
|
|
# rename the .new.png files to .png
|
|
find . -type d -path "*/tests/snapshots*" | while read dir; do
|
|
find "$dir" -type f -name "*.new.png" | while read file; do
|
|
mv -f "$file" "${file%.new.png}.png"
|
|
done
|
|
done
|
|
|
|
echo "Done!"
|