Compare commits

...

1 Commits

Author SHA1 Message Date
Shane Smiskol 00db1772be add flag to not update 2022-03-25 17:14:31 -07:00
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ function launch {
if [ -f "${BASEDIR}/.overlay_init" ]; then
find ${BASEDIR}/.git -newer ${BASEDIR}/.overlay_init | grep -q '.' 2> /dev/null
if [ $? -eq 0 ]; then
if [ $? -eq 0 ] || [ ! -z "${NO_UPDATE}" ]; then
echo "${BASEDIR} has been modified, skipping overlay update installation"
else
if [ -f "${STAGING_ROOT}/finalized/.overlay_consistent" ]; then