You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Environment variable GO111MODULE=off must be set when running go for drive and drive-gen in order for this to work.
Note that drive itself builds and runs fine without this (using modules), but drive-gen has hardcoded paths it seems and falls over if you try to use it after building this way. (initial chdir fails, and if you try to get clever and use symlinks, it fails with an exit status but no error text)
The text was updated successfully, but these errors were encountered:
I do note that drive-gen seems to populate an incorrect version string though?
[draeath@ginnungagap drive]$ ~/go/bin/drive version
drive version: 0.3.9.1
Commit Hash: 'bede608f250a9333d55c43396fc5e72827e806fd'
Go Version: go1.17.2
OS: linux/amd64
BuildTime: 2021-10-19 16:43:54.610897106 -0400 EDT m=+0.007806792
[draeath@ginnungagap drive]$ pwd
/home/draeath/go/src/github.com/odeke-em/drive
[draeath@ginnungagap drive]$ git status
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
[draeath@ginnungagap drive]$ git rev-parse master
bede608f250a9333d55c43396fc5e72827e806fd
Environment variable
GO111MODULE=off
must be set when running go for drive and drive-gen in order for this to work.Note that drive itself builds and runs fine without this (using modules), but drive-gen has hardcoded paths it seems and falls over if you try to use it after building this way. (initial chdir fails, and if you try to get clever and use symlinks, it fails with an exit status but no error text)
The text was updated successfully, but these errors were encountered: