From 02871e640d56dd980729c1312cbb7db944de8627 Mon Sep 17 00:00:00 2001 From: Fan Yang Date: Sat, 10 Jan 2015 13:57:23 +0800 Subject: [PATCH] (*)fixed commit prebuilt branch --- build/crosscompile.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/crosscompile.bash b/build/crosscompile.bash index 7459702..8ea767f 100644 --- a/build/crosscompile.bash +++ b/build/crosscompile.bash @@ -57,7 +57,7 @@ function go-build-all { SRCFILENAME=`echo $@ | sed 's/\.go//'` CURDIRNAME=${PWD##*/} OUTPUT=${SRCFILENAME:-$CURDIRNAME} # if no src file given, use current dir name - CMD="go-${GOOS}-${GOARCH} build -o ../prebuilt/$OUTPUT-${GOOS}-${GOARCH} $@" + CMD="go-${GOOS}-${GOARCH} build -o ./prebuilt/$OUTPUT-${GOOS}-${GOARCH} $@" echo "$CMD" $CMD || FAILURES="$FAILURES $PLATFORM" done