diff options
author | Vincent Ambo <tazjin@google.com> | 2019-10-05T13·54+0100 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2019-10-06T22·05+0100 |
commit | 0642f7044dea2127b1c7dab1d88d90638536183a (patch) | |
tree | 29a68d7f787b0f52a8a9b763f65d1855ce643db3 /tools/nixery/server/main.go | |
parent | f4bf3518f63501ddff42592b255fd5feaf846863 (diff) |
fix(server): Amend package path for Go tooling compatibility
With these changes it is possible to keep Nixery in $GOPATH and build the server in there, while still having things work correctly via Nix.
Diffstat (limited to 'tools/nixery/server/main.go')
-rw-r--r-- | tools/nixery/server/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/nixery/server/main.go b/tools/nixery/server/main.go index bad4c190c680..878e59ff6d50 100644 --- a/tools/nixery/server/main.go +++ b/tools/nixery/server/main.go @@ -35,9 +35,9 @@ import ( "time" "cloud.google.com/go/storage" - "github.com/google/nixery/builder" - "github.com/google/nixery/config" - "github.com/google/nixery/layers" + "github.com/google/nixery/server/builder" + "github.com/google/nixery/server/config" + "github.com/google/nixery/server/layers" log "github.com/sirupsen/logrus" ) |