mirror of
https://github.com/imjasonh/kontain.me
synced 2026-07-08 09:04:54 +00:00
9 lines
152 B
Bash
Executable file
9 lines
152 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
find cmd -name 'deploy.sh' -print0 |
|
|
while IFS= read -r -d '' line; do
|
|
bash -c "$line"
|
|
done
|