fix check flag

This commit is contained in:
David Holdeman 2023-03-16 07:25:44 -05:00
parent 4f78512312
commit 4685a428bc
No known key found for this signature in database
GPG Key ID: DBEE6FCFCC9DD9A6
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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