forgejo-init-script/tests.sh

20 lines
266 B
Bash
Raw Normal View History

2023-09-27 15:47:04 +05:30
#!/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