File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ install: test
1616release : test
1717 go get github.com/mitchellh/gox
1818 gox --output ' dist/{{.OS}}_{{.Arch}}/{{.Dir}}'
19+ mkdir -p dist/releases
1920 zip -j dist/releases/tflint_darwin_386.zip dist/darwin_386/tflint
2021 zip -j dist/releases/tflint_darwin_amd64.zip dist/darwin_amd64/tflint
2122 zip -j dist/releases/tflint_freebsd_386.zip dist/freebsd_386/tflint
Original file line number Diff line number Diff line change @@ -26,11 +26,14 @@ Download binary built for your architecture from [latest releases](https://githu
2626
2727An example of installation by command is as follows.
2828```
29- $ wget https://github.com/wata727/tflint/releases/download/v0.1.0/tflint_darwin_386.zip
30- $ unzip tflint_darwin_386.zip
31- $ mkdir /usr/local/tflint/bin
29+ $ wget https://github.com/wata727/tflint/releases/download/v0.1.0/tflint_darwin_amd64.zip
30+ $ unzip tflint_darwin_amd64.zip
31+ Archive: tflint_darwin_amd64.zip
32+ inflating: tflint
33+ $ mkdir -p /usr/local/tflint/bin
3234$ export PATH=/usr/local/tflint/bin:$PATH
3335$ install tflint /usr/local/tflint/bin
36+ $ tflint -v
3437```
3538
3639## Quick Start
You can’t perform that action at this time.
0 commit comments