Skip to content

Commit

Permalink
fix error in promotion script
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Nov 20, 2020
1 parent 1377090 commit 66a5981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/promote-golden-tests.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -eou pipefail

for $TO_PROMOTE in $(find tests/golden-results -type f -name '*.current'); do
for TO_PROMOTE in $(find tests/golden-results -type f -name '*.current'); do
mv "$TO_PROMOTE" "$(echo "$TO_PROMOTE" | sed -E 's/.current$//')"
done

0 comments on commit 66a5981

Please sign in to comment.