From 4685a428bcc9b16cde80d3ef98914d3199fd8345 Mon Sep 17 00:00:00 2001 From: David Holdeman Date: Thu, 16 Mar 2023 07:25:44 -0500 Subject: [PATCH] fix check flag --- bin/step1_build_hellen-one_docker.sh | 2 +- bin/step2_copy_with_docker.sh | 2 +- bin/step3_create_board_with_docker.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/step1_build_hellen-one_docker.sh b/bin/step1_build_hellen-one_docker.sh index 83c78e9..dd0d6db 100644 --- a/bin/step1_build_hellen-one_docker.sh +++ b/bin/step1_build_hellen-one_docker.sh @@ -1,6 +1,6 @@ #!/bin/bash -if [ ! -f hellen-one/git_scripts ]; then +if [ ! -e hellen-one/git_scripts ]; then echo "No submodules?" git submodule update --init --recursive fi diff --git a/bin/step2_copy_with_docker.sh b/bin/step2_copy_with_docker.sh index 3be1758..3bf3d06 100644 --- a/bin/step2_copy_with_docker.sh +++ b/bin/step2_copy_with_docker.sh @@ -1,6 +1,6 @@ #!/bin/bash -if [ ! -f hellen-one/git_scripts ]; then +if [ ! -e hellen-one/git_scripts ]; then echo "No submodules?" git submodule update --init --recursive fi diff --git a/bin/step3_create_board_with_docker.sh b/bin/step3_create_board_with_docker.sh index ca62d1f..304344e 100644 --- a/bin/step3_create_board_with_docker.sh +++ b/bin/step3_create_board_with_docker.sh @@ -1,6 +1,6 @@ #!/bin/bash -if [ ! -f hellen-one/git_scripts ]; then +if [ ! -e hellen-one/git_scripts ]; then echo "No submodules?" git submodule update --init --recursive fi