Commit d2067b9175134ab8361af92c2219697f876f1998
1 parent
df74b16b
Exists in
master
and in
5 other branches
Fixing customization errors in windows package.
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
win/pack.sh
... | ... | @@ -302,7 +302,6 @@ buildApplication() |
302 | 302 | |
303 | 303 | make all |
304 | 304 | if [ "$?" != "0" ]; then |
305 | - /bin/bash | |
306 | 305 | failed "Can't buid ${1}" |
307 | 306 | fi |
308 | 307 | |
... | ... | @@ -434,7 +433,6 @@ makeInstaller() |
434 | 433 | makensis ${NSIS_ARGS} ${NSI} |
435 | 434 | if [ "$?" != "0" ]; then |
436 | 435 | echo makensis ${NSIS_ARGS} ${NSI} |
437 | - /bin/bash | |
438 | 436 | failed "Error building ${NSI}" |
439 | 437 | fi |
440 | 438 | |
... | ... | @@ -559,7 +557,7 @@ do |
559 | 557 | echo " --product-name Set the product name (current is ${PRODUCT_NAME})" |
560 | 558 | echo " --project-path Set the path for the customization data" |
561 | 559 | echo " --target-archs Set the target architectures (current are ${TARGET_ARCHS})" |
562 | - echo " --sources-from Base URL of the git server with the sources (current is ${GIT_URL})" | |
560 | + echo " --sources-from Base URL of the git server with the sources (current is ${GIT_URL})" | |
563 | 561 | |
564 | 562 | if [ ! -z ${WIN_PACKAGE_SERVER} ]; then |
565 | 563 | echo " --no-publish Don't publish binaries in ${WIN_PACKAGE_SERVER}/${PRODUCT_NAME}" | ... | ... |