17 lines
191 B
Bash
Executable file
17 lines
191 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -Exeuo pipefail
|
|
|
|
source integration/lib.sh
|
|
|
|
main() {
|
|
teardown_env || true
|
|
setup_env
|
|
wait_for_env
|
|
forgejo_root
|
|
init_users_repo
|
|
teardown_env
|
|
echo "All Good! :)"
|
|
}
|
|
|
|
main
|