FIX: Bug [0000889] "Build scripts should exit on error"

This commit is contained in:
Alexander Koblov 2014-09-20 14:28:05 +00:00
commit d30a06b0c0
4 changed files with 10 additions and 0 deletions

View file

@ -1,5 +1,7 @@
#!/bin/sh
set -e
# if you compile first time you must change variable "lazpath" and "lcl"
# after it execute this script with parameter "all" at doublecmd dir
# "./build.sh all" it build doublecmd

View file

@ -1,4 +1,7 @@
#!/bin/sh
set -e
# Compiling components
# This script run from main build.sh script

View file

@ -1,5 +1,7 @@
#!/bin/sh
set -e
# Parse input parameters
CKNAME=$(basename "$0")
args=$(getopt -n $CKNAME -o P:,I: -l portable-prefix:,install-prefix:,default -- "$@")

View file

@ -1,4 +1,7 @@
#!/bin/sh
set -e
# Build all plugins
# This script run from main build.sh script