diff --git a/bin/sync-fetch-cobolcheck-files b/bin/sync-fetch-cobolcheck-files new file mode 100755 index 00000000..6400e009 --- /dev/null +++ b/bin/sync-fetch-cobolcheck-files @@ -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