summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-11-15 21:04:53 +0100
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-11-15 21:04:53 +0100
commit35633f3dc606541bb17788d492460feae4b2f946 (patch)
tree4918e7f141b915a1918e680f3ed4e671497b8fba /build.sh
parent59765f508225998d8a73b1da8380ff06b4a6b79c (diff)
downloadmidipix_build-35633f3dc606541bb17788d492460feae4b2f946.tar.bz2
midipix_build-35633f3dc606541bb17788d492460feae4b2f946.tar.xz
build.sh: adds -N (offline mode) flag.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index 2d616f54..f0a00483 100755
--- a/build.sh
+++ b/build.sh
@@ -15,6 +15,7 @@ while [ ${#} -gt 0 ]; do
case ${1} in
-c) export ARG_CLEAN=1; ;;
-n) export ARG_DRYRUN=1 ARG_VERBOSE=1; ;;
+-N) export ARG_OFFLINE=1; ;;
-t*) export ARG_TARBALL=1; [ "${1#-t.}" != "${1}" ] && TARBALL_SUFFIX=${1#-t.}; ;;
-v) export ARG_VERBOSE=1; ;;
-x) export ARG_XTRACE=1; set -o xtrace; ;;