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