1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-03-07 10:37:37 +01:00

- added check for purgatory dir when installing package.

This commit is contained in:
cage 2022-02-18 12:33:34 +01:00
parent d592cde764
commit 2e824517fb

View File

@ -152,7 +152,11 @@ install_croatoan () {
fi
cd $CROATOAN_DIR && @GIT@ checkout $CROATOAN_COMMIT
cd $QUICKLISP_INSTALL_DIR/local-projects/ && @GIT@ clone $PURGATORY_GIT_URL
if [ -d "PURGATORY_DIR" ]; then
cd $PURGATORY_DIR && @GIT@ pull
else
cd $QUICKLISP_INSTALL_DIR/local-projects/ && @GIT@ clone $PURGATORY_GIT_URL
fi
}