Skip to content

Commit

Permalink
Handle GUP_{XTRACE,VERBOSE} in build scripts
Browse files Browse the repository at this point in the history
This is basically there to match the supporting repos.
  • Loading branch information
JNRowe committed Jul 18, 2016
1 parent 582c174 commit 915035c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion gup/all.gup
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#! /bin/sh
#!sh
[ "${GUP_XTRACE:-0}" -eq 1 ] && set -x
[ "$GUP_VERBOSE" -ge 1 ] && set -v

set -eu

Expand Down
4 changes: 3 additions & 1 deletion gup/html.gup
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#! /bin/sh
#!sh
[ "${GUP_XTRACE:-0}" -eq 1 ] && set -x
[ "$GUP_VERBOSE" -ge 1 ] && set -v

set -eu

Expand Down
4 changes: 3 additions & 1 deletion gup/tags/libc.ctags.gup
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#! /bin/sh
#!sh
[ "${GUP_XTRACE:-0}" -eq 1 ] && set -x
[ "$GUP_VERBOSE" -ge 1 ] && set -v

set -eu

Expand Down
4 changes: 3 additions & 1 deletion gup/tags/lua.gup
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#! /bin/sh
#!sh
[ "${GUP_XTRACE:-0}" -eq 1 ] && set -x
[ "$GUP_VERBOSE" -ge 1 ] && set -v

set -eu

Expand Down
4 changes: 3 additions & 1 deletion gup/tags/ruby.gup
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#! /bin/sh
#!sh
[ "${GUP_XTRACE:-0}" -eq 1 ] && set -x
[ "$GUP_VERBOSE" -ge 1 ] && set -v

set -eu

Expand Down

0 comments on commit 915035c

Please sign in to comment.