diff options
author | Munyoki Kilyungi | 2025-05-10 08:45:22 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-05-10 08:45:31 +0300 |
commit | e45d781233303effa0d6035013b30669c4e8127b (patch) | |
tree | 91c9676f34cc93cd68dc9080cfafed83e81bf5af | |
parent | 4ca9bbe29781913f046b22e12e738a5317310dc1 (diff) | |
download | gn-machines-e45d781233303effa0d6035013b30669c4e8127b.tar.gz |
Proper indentation.
-rwxr-xr-x | genenetwork-local-container.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/genenetwork-local-container.sh b/genenetwork-local-container.sh index 16492c6..f178ed9 100755 --- a/genenetwork-local-container.sh +++ b/genenetwork-local-container.sh @@ -98,7 +98,7 @@ if [ -z "${HOME:-}" ]; then fi init_container() { - log "INFO" "Creating system directories..." + log "INFO" "Creating system directories..." for dir in "${SYSTEM_DIRECTORIES[@]}"; do # Check if directory exists and is accessible if [ -d "$dir" ]; then @@ -284,6 +284,7 @@ init_container() { log "INFO" "Email: test@development.user" log "INFO" "Password: testpasswd" } + if [ "$1" = "--init-container" ]; then init_container exit 0 @@ -634,7 +635,7 @@ run_beginner_setup_tutorial() { # Check for --beginner-set-up flag or run tutorial interactively if [ "$1" = "--beginner-set-up" ]; then -# Interactive mode: run the tutorial + # Interactive mode: run the tutorial run_beginner_setup_tutorial exit 0 fi |