Merge pull request #272 from chuckwagoncomputing/fix-checks

Fix submodule check
This commit is contained in:
rusefillc 2023-03-16 12:00:21 -04:00 committed by GitHub
commit 348df566e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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