From 1b1e2397c34c3c4c407d19283ff62c8691ef0d76 Mon Sep 17 00:00:00 2001 From: Julian Yap Date: Fri, 18 Nov 2016 23:36:55 -1000 Subject: [PATCH] Fix build --- build/env.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/env.sh b/build/env.sh index af560305b3..089ca1c2a2 100755 --- a/build/env.sh +++ b/build/env.sh @@ -10,11 +10,11 @@ fi # Create fake Go workspace if it doesn't exist yet. workspace="$PWD/build/_workspace" root="$PWD" -ethdir="$workspace/src/github.com/ethereum" -if [ ! -L "$ethdir/go-ethereum" ]; then +ethdir="$workspace/src/github.com/ubiq" +if [ ! -L "$ethdir/go-ubiq" ]; then mkdir -p "$ethdir" cd "$ethdir" - ln -s ../../../../../. go-ethereum + ln -s ../../../../../. go-ubiq cd "$root" fi @@ -24,8 +24,8 @@ GO15VENDOREXPERIMENT=1 export GOPATH GO15VENDOREXPERIMENT # Run the command inside the workspace. -cd "$ethdir/go-ethereum" -PWD="$ethdir/go-ethereum" +cd "$ethdir/go-ubiq" +PWD="$ethdir/go-ubiq" # Launch the arguments with the configured environment. exec "$@"