diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-04 15:21:59 +0200 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-04 15:21:59 +0200 |
commit | 5792d85f335f220964f4c1af94525d3ef6b6f575 (patch) | |
tree | 2c7e0ebb6a727ea02cc0e63d0f26b72c599b9b16 /publish.sh | |
parent | e09c0dbecb2c65ed36a4b81f88c6ffdf7ca18b8e (diff) | |
download | pdf-over-5792d85f335f220964f4c1af94525d3ef6b6f575.tar.gz pdf-over-5792d85f335f220964f4c1af94525d3ef6b6f575.tar.bz2 pdf-over-5792d85f335f220964f4c1af94525d3ef6b6f575.zip |
profile order no longer has effects on build
closes #62
Diffstat (limited to 'publish.sh')
-rwxr-xr-x | publish.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ for (( i = 0 ; i < ${#names[@]} ; i++ )) do NAME=${names[$i]} INSTALLER=setup_pdf-over_$NAME.jar begin_phase "Building package [$PROFILE] as $INSTALLER..." - mvn install -P$PROFILE $MVN_PARAMS > "$LOG_DIR/build_$NAME.log" 2>&1 + mvn install -P$PROFILE -Dno-native-profile $MVN_PARAMS > "$LOG_DIR/build_$NAME.log" 2>&1 RETVAL=$? if [ $RETVAL -eq 0 ]; then end_phase "OK" |