Skip to content

Commit

Permalink
Merge pull request #137 from asahi3g/develop_nex
Browse files Browse the repository at this point in the history
Use SkycoinProject/nex
  • Loading branch information
amherag committed Dec 31, 2019
2 parents 73e1799 + 7b601cb commit 129ca33
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -70,7 +70,7 @@ install-gfx-deps-Darwin:

install-deps: configure
@echo "Installing go package dependencies"
go get github.com/blynn/nex
go get github.com/SkycoinProject/nex
go get github.com/cznic/goyacc

install-gfx-deps: configure $(INSTALL_GFX_DEPS)
Expand Down
2 changes: 1 addition & 1 deletion cx-setup.bat
Expand Up @@ -83,7 +83,7 @@ call :echoWithColor yellow " Ensuring that we have local repositories....."
call :getRepo go-gl\gl\v2.1\gl
call :getRepo go-gl\glfw\v3.2\glfw
call :getRepo go-gl\gltext
call :getRepo blynn\nex
call :getRepo SkycoinProject\nex
call :getRepo cznic\goyacc
call :getRepo skycoin\skycoin

Expand Down
12 changes: 6 additions & 6 deletions cx.sh
Expand Up @@ -91,16 +91,16 @@ if [ ! -d "$INSTALLATION_PATH/src/github.com/go-gl/gltext" ]; then
fi
fi

if [ ! -d "$INSTALLATION_PATH/src/github.com/blynn/nex" ]; then
echo "NOTE:\tRepository github.com/blynn/nex is not present in $GOPATH"
echo "NOTE:\tInstalling it via 'go get github.com/blynn/nex'"
if [ ! -d "$INSTALLATION_PATH/src/github.com/SkycoinProject/nex" ]; then
echo "NOTE:\tRepository github.com/SkycoinProject/nex is not present in $GOPATH"
echo "NOTE:\tInstalling it via 'go get github.com/SkycoinProject/nex'"

go get github.com/blynn/nex
go get github.com/SkycoinProject/nex

if [ $? -eq 0 ]; then
echo "OK:\tRepository github.com/blynn/nex was installed successfully"
echo "OK:\tRepository github.com/SkycoinProject/nex was installed successfully"
else
echo "FAIL:\tCouldn't install github.com/blynn/nex"
echo "FAIL:\tCouldn't install github.com/SkycoinProject/nex"
exit 0
fi
fi
Expand Down

0 comments on commit 129ca33

Please sign in to comment.