Jeffail / leaps

A pair programming service using operational transforms
MIT License
751 stars 55 forks source link

Fresh go get -u failure #41

Closed junkblocker closed 6 years ago

junkblocker commented 7 years ago

Have had this failure for a long time now.

% go get github.com/jeffail/leaps/cmd/...

% go get github.com/jeffail/leaps/cmd/...

% go get -u github.com/jeffail/leaps/cmd/...
package github.com/jeffail/leaps/vendor/github.com/elazarl/go-bindata-assetfs: /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/elazarl/go-bindata-assetfs/.git exists but is not a directory
package github.com/jeffail/leaps/vendor/github.com/garyburd/redigo/redis: /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/garyburd/redigo/.git exists but is not a directory
package github.com/jeffail/leaps/vendor/github.com/jeffail/util/log: /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/jeffail/util/.git exists but is not a directory
package github.com/jeffail/leaps/vendor/github.com/go-sql-driver/mysql: /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/go-sql-driver/mysql/.git exists but is not a directory
package github.com/jeffail/leaps/vendor/github.com/satori/go.uuid: /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/satori/go.uuid/.git exists but is not a directory
package github.com/jeffail/leaps/vendor/github.com/lib/pq: /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/lib/pq/.git exists but is not a directory
package github.com/jeffail/leaps/vendor/github.com/amir/raidman: /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/amir/raidman/.git exists but is not a directory
package github.com/jeffail/leaps/vendor/github.com/jeffail/gabs: /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/jeffail/gabs/.git exists but is not a directory

% ls -al /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/elazarl/go-bindata-assetfs/.git 
-rw-r--r--  1 fail  staff  -   78B Apr  9 17:37 /Users/fail/work/go/src/github.com/jeffail/leaps/vendor/github.com/elazarl/go-bindata-assetfs/.git
junkblocker commented 7 years ago

Seems it is one of my git hooks.

junkblocker commented 7 years ago

Seems it is related to this instead of my git hooks - https://github.com/golang/go/issues/17522

junkblocker commented 7 years ago

Closed? Is this not an issue? This is a bug for me that lets me not update.

Jeffail commented 7 years ago

Ah sorry @junkblocker I misunderstood. Could you try running git submodule update --init inside the leaps directory?

junkblocker commented 7 years ago

Same result. No change in behavior.

Jeffail commented 7 years ago

What if you delete the entire ./vendor directory first?

junkblocker commented 7 years ago

Subsequent go get -u github.com/jeffail/leaps/cmd/... continues to fail even with that.