mirror of
https://github.com/kataras/iris.git
synced 2025-02-02 15:30:36 +01:00
12 lines
262 B
Bash
12 lines
262 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
for f in *; do
|
||
|
if [ -d "$f" ]; then
|
||
|
# Will not run if no directories are available
|
||
|
go mod init
|
||
|
go mod download
|
||
|
go run .
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
# git update-index --chmod=+x ./.github/scripts/setup_examples_test.bash
|