mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-11 10:30:18 +00:00
14 lines
247 B
Bash
14 lines
247 B
Bash
|
#!/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
|