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.
1 parent 50b97f4 commit 3156d50Copy full SHA for 3156d50
.gitignore
@@ -1 +1 @@
1
-validate-http-headers*
+dist/
build.sh
@@ -1,3 +1,7 @@
#!/bin/sh
2
-env GOOS=linux GOARCH=amd64 go build -o validate-http-headers-linux
3
-env GOOS=darwin GOARCH=amd64 go build -o validate-http-headers-osx
+rm -rf dist
+mkdir dist
4
+echo 'Building for Linux'
5
+env GOOS=linux GOARCH=amd64 go build -o dist/validate-http-headers-linux
6
+echo 'Building for OSX'
7
+env GOOS=darwin GOARCH=amd64 go build -o dist/validate-http-headers-osx
0 commit comments