File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ install: test
16
16
release : test
17
17
go get github.com/mitchellh/gox
18
18
gox --output ' dist/{{.OS}}_{{.Arch}}/{{.Dir}}'
19
+ mkdir -p dist/releases
19
20
zip -j dist/releases/tflint_darwin_386.zip dist/darwin_386/tflint
20
21
zip -j dist/releases/tflint_darwin_amd64.zip dist/darwin_amd64/tflint
21
22
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
26
26
27
27
An example of installation by command is as follows.
28
28
```
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
32
34
$ export PATH=/usr/local/tflint/bin:$PATH
33
35
$ install tflint /usr/local/tflint/bin
36
+ $ tflint -v
34
37
```
35
38
36
39
## Quick Start
You can’t perform that action at this time.
0 commit comments