We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 144f8d7 commit 3ddeb0aCopy full SHA for 3ddeb0a
bin/sync-fetch-cobolcheck-files
@@ -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