aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-11-15 01:10:03 +0800
committerGitHub <noreply@github.com>2016-11-15 01:10:03 +0800
commit8dcea0ac0785c92df84d55b8322281e12189d8fb (patch)
tree18d9c033f86af4eda374261e4c0a165ac2c733c0 /internal
parentd89ea3e6f90c32a97bad58b82a15af0d81f4250e (diff)
parentdfe79cc7845d94d14c2bc091c7eeac082f6b1e90 (diff)
downloaddexon-8dcea0ac0785c92df84d55b8322281e12189d8fb.tar
dexon-8dcea0ac0785c92df84d55b8322281e12189d8fb.tar.gz
dexon-8dcea0ac0785c92df84d55b8322281e12189d8fb.tar.bz2
dexon-8dcea0ac0785c92df84d55b8322281e12189d8fb.tar.lz
dexon-8dcea0ac0785c92df84d55b8322281e12189d8fb.tar.xz
dexon-8dcea0ac0785c92df84d55b8322281e12189d8fb.tar.zst
dexon-8dcea0ac0785c92df84d55b8322281e12189d8fb.zip
Merge pull request #2977 from karalabe/initial-mobile-suport
mobile: initial wrappers for mobile support
Diffstat (limited to 'internal')
-rw-r--r--internal/build/util.go2
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 {