diff --git a/Makefile b/Makefile index 3e3546d59..df53df86d 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/cx-setup.bat b/cx-setup.bat index 697b8cbd3..affab4b4c 100644 --- a/cx-setup.bat +++ b/cx-setup.bat @@ -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 diff --git a/cx.sh b/cx.sh index 0d6c26f3d..ab73c50bf 100755 --- a/cx.sh +++ b/cx.sh @@ -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