mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-09 14:41:02 +00:00
8 lines
119 B
Bash
Executable file
8 lines
119 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eou pipefail
|
|
|
|
for file in `ls *-test.sh`; do
|
|
echo "running $file";
|
|
./$file "$@"
|
|
done
|