mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
13 lines
232 B
Bash
Executable File
13 lines
232 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
test_dir=$(cd `dirname $0`/.. && pwd -P)
|
|
|
|
project_dir="$test_dir/projects"
|
|
|
|
for dir in "$project_dir"/*; do
|
|
if [ -d "$dir" ]; then
|
|
name="${dir##*/}"
|
|
"$test_dir/spec/prepare/$name"
|
|
fi
|
|
done |