Browse Source

Force "go get" to fetch latest package version

Rod Hynes 9 years ago
parent
commit
49d060cdb7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      MobileLibrary/Android/make.bash

+ 2 - 2
MobileLibrary/Android/make.bash

@@ -7,8 +7,8 @@ if [ ! -f make.bash ]; then
   exit 1
   exit 1
 fi
 fi
 
 
-GOOS=arm go get -d -v github.com/Psiphon-Inc/openssl
-GOOS=arm go get -d -v ./...
+GOOS=arm go get -d -v -u github.com/Psiphon-Inc/openssl
+GOOS=arm go get -d -v -u ./...
 if [ $? != 0 ]; then
 if [ $? != 0 ]; then
   echo "..'go get' failed, exiting"
   echo "..'go get' failed, exiting"
   exit $?
   exit $?