Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
add workaround for -settings_skupverification=TRUE
Browse files Browse the repository at this point in the history
The workaround is described in: cake-build/cake#1786
The makers of Cake.FileHelpers are working on it. cake-contrib/Cake.FileHelpers#15
  • Loading branch information
Benjamin Scholtysik (Reimold) committed Sep 22, 2017
1 parent 345b4ef commit 497d1d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bootstrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ fi
echo "EXTRA ARGS: $EXTRA_ARGS"
# Start Cake
if $SHOW_VERSION; then
mono $CAKE_EXE -version
mono $CAKE_EXE -version -settings_skipverification=true
elif $DRYRUN; then
mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET -dryrun $EXTRA_ARGS
mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET -dryrun -settings_skipverification=true $EXTRA_ARGS
else
mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET $EXTRA_ARGS
mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET -settings_skipverification=true $EXTRA_ARGS
fi

exit $?

0 comments on commit 497d1d9

Please sign in to comment.