Skip to content

Commit

Permalink
Add sync cobolcheck script (exercism#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored and SimaDovakin committed Jul 26, 2024
1 parent 8cbfb19 commit 9ffb868
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bin/sync-fetch-cobolcheck-files
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash

set -euo pipefail

shopt -s nullglob
for test_dir in exercises/{concept,practice}/*; do
for file in fetch-cobolcheck fetch-cobolcheck.ps1; do
cp "bin/${file}" "${test_dir}/bin/${file}"
done
done

0 comments on commit 9ffb868

Please sign in to comment.