We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9acdc81 commit 204ce81Copy full SHA for 204ce81
2 files changed
scripts/accept_snapshots.sh
@@ -5,7 +5,7 @@
5
set -eu
6
7
# rename the .new.png files to .png
8
-find . -type d -path "*/tests/snapshots*" | while read dir; do
+find . -type d -path "./examples/*" | while read dir; do
9
find "$dir" -type f -name "*.new.png" | while read file; do
10
mv -f "$file" "${file%.new.png}.png"
11
done
scripts/update_snapshots_from_ci.sh
@@ -16,7 +16,7 @@ else
16
fi
17
18
# remove any existing .new.png that might have been left behind
19
20
21
rm "$file"
22
0 commit comments