19 lines
266 B
Bash
Executable file
19 lines
266 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
set -Exeuo pipefail
|
|
|
|
source lib.sh
|
|
|
|
main() {
|
|
wait_for_env
|
|
forgejo_root
|
|
init_users_repo
|
|
echo "All Good! :)"
|
|
}
|
|
|
|
main
|
|
exit 0
|