Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
Fix import (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
rockyluke authored and vincentbernat committed Aug 18, 2017
1 parent 8c27b63 commit 5546be2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/proxy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ DEPS += $(shell $(GO) list -f '{{join .TestImports "\n"}}' ./src/... | grep '^[a
# Build proxy
all: $(PWD)/build~/proxy
$(PWD)/build~/proxy: deps fmt vet check
$(V_gobuild) -ldflags "-X main.version $(VERSION)" -o $@ ./src
$(V_gobuild) -ldflags "-X=main.version $(VERSION)" -o $@ ./src

# Grab dependencies
deps: $(DEPS)
Expand Down
2 changes: 1 addition & 1 deletion contrib/proxy/src/dk/config.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package dk

import (
"code.google.com/p/gcfg"
"gopkg.in/gcfg.v1"
"fmt"
"regexp"
"sort"
Expand Down

0 comments on commit 5546be2

Please sign in to comment.