docker + circleci autobuild; fixed a bug when missing Projects directory

This commit is contained in:
2022-10-01 12:58:39 -06:00
parent 43f6ef72aa
commit ee6a1b0cbd
6 changed files with 109 additions and 1 deletions

View File

@ -20,7 +20,8 @@ LOGFILE="$HOME/dotwryn-install.log"
__INFO "installation start : $(date)" 2>> "$LOGFILE"
{
SETUP__OS || __FAIL 1 'failed to set up os-dependencies (see above)'
SETUP__CONFIG || __FAIL 2 'failed to set up program configuration (see above)'
SETUP__GIT || __FAIL 2 'failed to set up git (see above)'
SETUP__CONFIG || __FAIL 3 'failed to set up program configuration (see above)'
} 2>&1 | tee --append "$LOGFILE"
__INFO "installation complete: $(date)" 2>> "$LOGFILE"