Bug: The enabled test checks, though they exist are never actually run

Fix by copying the `enabled` check file, if it exists to where the tests are being run
This commit is contained in:
Sidharth Kshatriya 2021-12-14 16:36:28 +05:30
parent 7c8595c5ee
commit 4d3a057a03

View File

@ -33,7 +33,7 @@ main() {
for dir in $(find "${@:-.}" -type d | sort); do
cd $root/$dir;
mkdir -p $work/$dir
for file in in cmd rc; do
for file in in cmd rc enabled; do
[ -f $file ] && cp $file $work/$dir/
done
cd $work/$dir;