diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-10-17 20:17:14 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-11-14 23:56:58 +0800 |
commit | b7dfd333c5ac5caf4278e2557503dc4fe4eb46c9 (patch) | |
tree | 56aa781c07c9b2a8718af0c69d65b661008fbafa /internal | |
parent | 178da7c6a94718389e7192d87df5ee42e7223bc3 (diff) | |
download | go-tangerine-b7dfd333c5ac5caf4278e2557503dc4fe4eb46c9.tar.gz go-tangerine-b7dfd333c5ac5caf4278e2557503dc4fe4eb46c9.tar.zst go-tangerine-b7dfd333c5ac5caf4278e2557503dc4fe4eb46c9.zip |
.travis, build: Build step to push .aar to Maven Central
Diffstat (limited to 'internal')
-rw-r--r-- | internal/build/util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/build/util.go b/internal/build/util.go index ce17ce220..c7e0614f2 100644 --- a/internal/build/util.go +++ b/internal/build/util.go @@ -56,7 +56,7 @@ func GOPATH() string { if len(path) == 0 { log.Fatal("GOPATH is not set") } - // Ensure that our internal vendor folder in on GOPATH + // Ensure that our internal vendor folder is on GOPATH vendor, _ := filepath.Abs(filepath.Join("build", "_vendor")) for _, dir := range path { if dir == vendor { |