From bdbefc34c0151bb36984e4953329bd46e266b68d Mon Sep 17 00:00:00 2001 From: Fabien Catteau Date: Thu, 21 Jun 2018 10:42:15 -0400 Subject: Don't call realpath Closes #2 --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run.sh') diff --git a/run.sh b/run.sh index 6326f07..900311d 100755 --- a/run.sh +++ b/run.sh @@ -118,7 +118,7 @@ case "$COMMAND" in fi # Symlink the project into GOPATH to allow fetching dependencies. - ln -sf `realpath $APP_PATH` /gopath/src/app + ln -s $APP_PATH /gopath/src/app if test -f Godeps/Godeps.json ; then # Install Go dependencies with Godeps. -- cgit v1.2.3