mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
15 lines
248 B
Bash
Executable File
15 lines
248 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
for dir in ./*; do
|
|
# skip non-directory entries
|
|
[ -d "$dir" ] || continue
|
|
|
|
# skip if there's no build.sh in the directory
|
|
[ -e "$dir/build.sh" ] || continue
|
|
|
|
(cd "$dir"; ./build.sh)
|
|
done
|
|
|