We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d767e00 + ce633c1 commit 274680cCopy full SHA for 274680c
Makefile
@@ -90,11 +90,12 @@ lint:
90
test:
91
go test -race ./...
92
93
+## this uses https://github.com/Masterminds/glide and https://github.com/sgotti/glide-vc
94
update-deps:
95
glide update --strip-vcs --strip-vendor --update-vendored --delete
96
glide-vc --only-code --no-tests
97
# see http://sed.sourceforge.net/sed1line.txt
- for f in $$(find vendor -type f); do sed -i -e :a -e '/^\n*$$/{$$d;N;ba' -e '}' $$f; done
98
+ find vendor -type f -exec sed -i -e :a -e '/^\n*$$/{$$d;N;ba' -e '}' "{}" \;
99
100
img/%.png: img/%.dot
101
dot -Tpng $^ > $@
0 commit comments