chore: fix copy-produced
This commit is contained in:
parent
51adfa2e0c
commit
ca740f5687
1 changed files with 2 additions and 2 deletions
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
root="$(realpath $(dirname $0))"
|
||||
cd ${1:-$PWD}
|
||||
for f in *.produced.out; do
|
||||
cp $f "$root/${f/produced/expected}"
|
||||
for f in $(find . -name '*.expected.out'); do
|
||||
cp ${f/expected/produced} "$root/$f"
|
||||
done
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue