mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Bug [0000889] "Build scripts should exit on error"
This commit is contained in:
parent
6efa6585f3
commit
d30a06b0c0
4 changed files with 10 additions and 0 deletions
2
build.sh
2
build.sh
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
# Compiling components
|
||||
|
||||
# This script run from main build.sh script
|
||||
|
|
|
|||
|
|
@ -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 -- "$@")
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
# Build all plugins
|
||||
|
||||
# This script run from main build.sh script
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue