Optimised quick&dirty setup.

This commit is contained in:
Achim D. Brucker 2022-06-29 13:57:07 +01:00
parent 38f6516ad9
commit 4ac7c84403
1 changed files with 10 additions and 4 deletions

View File

@ -169,8 +169,12 @@ clone_repo
ISADOF_MAIN_DIR=`pwd`
$ISABELLE components -x $ISADOF_MAIN_DIR
$ISABELLE components -u $ISADOF_WORK_DIR
if [ "$DIRTY" = "true" ]; then
echo "Running in Quick and Dirty mode!"
else
$ISABELLE components -x $ISADOF_MAIN_DIR
$ISABELLE components -u $ISADOF_WORK_DIR
fi
VARS=`$ISABELLE getenv ISABELLE_TOOL`
for i in $VARS; do
@ -187,8 +191,10 @@ ISADOF_DIR="$BUILD_DIR/$ISADOF_TAR"
check_isabelle_version
build_and_install_manuals
$ISABELLE components -x $ISADOF_WORK_DIR
$ISABELLE components -u $ISADOF_MAIN_DIR
if [ "$DIRTY" != "true" ]; then
$ISABELLE components -x $ISADOF_WORK_DIR
$ISABELLE components -u $ISADOF_MAIN_DIR
fi
create_archive