Skip to content
Snippets Groups Projects
Commit 4188607d authored by Ralf Jung's avatar Ralf Jung
Browse files

offer a way to export without testing

parent ad2bfc80
No related branches found
No related tags found
No related merge requests found
......@@ -60,13 +60,12 @@ $DATE > $ARCHIVE/DATE
echo "Creating $TARGET.tar.gz with contents:"
tar -cvzf $TARGET.tar.gz $TARGET
# Try to compile.
echo "Testing installation..."
make -C $TARGET -j4
echo "---Success!---"
read -n 1 -p "Press ENTER to delete test folder, or Ctrl+C to keep the files."
rm -Rf $TARGET
echo "Cleared $TARGET."
# Try to compile (unless disabled).
if [ -z "${NO_TEST:-}" ]; then
echo "Testing installation..."
make -C $TARGET -j4
echo "---Success!---"
read -n 1 -p "Press ENTER to delete test folder, or Ctrl+C to keep the files."
rm -Rf $TARGET
echo "Cleared $TARGET."
fi
......@@ -4,7 +4,3 @@
TARGET="cfml2_mosel"
source ../export_common.sh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment