* Add script to sync test lib * Update bin/sync-test-lib Co-authored-by: Glenn Jackman <glenn.jackman@gmail.com> --------- Co-authored-by: Glenn Jackman <glenn.jackman@gmail.com>
9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
shopt -s nullglob
|
|
for test_file in exercises/{concept,practice}/*/libs/exercism/test; do
|
|
cp ./libs/exercism/test "${test_file}"
|
|
done
|