From c6b76d7aebc66d3cd16a6d128e285742ffc81b87 Mon Sep 17 00:00:00 2001 From: Joakim Lundborg Date: Fri, 6 Feb 2015 00:26:31 +0100 Subject: [PATCH] Remove set -x to prevent spamming stderr --- go-wrapper | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go-wrapper b/go-wrapper index 97367b71..823a998f 100755 --- a/go-wrapper +++ b/go-wrapper @@ -74,17 +74,17 @@ case "$cmd" in download) execCommand=( go get -v -d "$@" ) if [ "$goDir" ]; then execCommand+=( "$goDir" ); fi - set -x; exec "${execCommand[@]}" + exec "${execCommand[@]}" ;; install) execCommand=( go install -v "$@" ) if [ "$goDir" ]; then execCommand+=( "$goDir" ); fi - set -x; exec "${execCommand[@]}" + exec "${execCommand[@]}" ;; run) - set -x; exec "$goBin" "$@" + exec "$goBin" "$@" ;; *)