Skip to content

Commit 3ddeb0a

Browse files
Add sync cobolcheck script (#157)
1 parent 144f8d7 commit 3ddeb0a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

bin/sync-fetch-cobolcheck-files

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
shopt -s nullglob
6+
for test_dir in exercises/{concept,practice}/*; do
7+
for file in fetch-cobolcheck fetch-cobolcheck.ps1; do
8+
cp "bin/${file}" "${test_dir}/bin/${file}"
9+
done
10+
done

0 commit comments

Comments
 (0)