From: Gustavo Niemeyer Date: Mon, 15 Aug 2011 17:25:54 +0000 (-0300) Subject: build: don't print anything on version.bash -save X-Git-Tag: weekly.2011-08-17~46 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b0fc8a9d571e3540c1a70e1e3b1a05bd1b4af4b4;p=gostls13.git build: don't print anything on version.bash -save R=rsc CC=golang-dev https://golang.org/cl/4904044 --- diff --git a/src/version.bash b/src/version.bash index 21cfb82095..fc899e2e3e 100755 --- a/src/version.bash +++ b/src/version.bash @@ -3,7 +3,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -GOROOT=$(cd `dirname $0`/..; pwd) +GOROOT=$(dirname $0)/.. # If a version file created by -save is available, use it if [ -f "$GOROOT/VERSION" ]; then @@ -45,7 +45,6 @@ fi if [ "$1" = "-save" ]; then echo $VERSION > $GOROOT/VERSION - echo "Saved '$VERSION' to $GOROOT/VERSION" 1>&2 else echo $VERSION fi