20 lines
266 B
Bash
20 lines
266 B
Bash
|
#!/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
|