mirror of
https://github.com/fluencelabs/aquavm
synced 2025-04-25 07:12:16 +00:00
11 lines
175 B
Bash
11 lines
175 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
for dir in ./security_tetraplets/*; do
|
||
|
# skip non-directory entries
|
||
|
[ -d "$dir" ] || continue
|
||
|
|
||
|
(cd "$dir"; fce build)
|
||
|
done
|