Skip to content

Commit

Permalink
Merge release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mandelsoft committed Dec 31, 2018
2 parents 27aded1 + f61d995 commit ffb5379
Show file tree
Hide file tree
Showing 104 changed files with 18,063 additions and 968 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
tags
.idea
/local
/spiff
/spiff++
*.coverprofile
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go

go:
- 1.7
- 1.10.4

install:
- go get -v github.com/kr/godep
Expand Down
4 changes: 0 additions & 4 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ grammar:
release: spiff_linux_amd64.zip spiff_darwin_amd64.zip

spiff_linux_amd64.zip:
GOPATH=$(GOPATH) GOOS=linux GOARCH=amd64 go build -o spiff++ .
zip spiff_linux_amd64.zip spiff++
rm spiff++
GOPATH=$(GOPATH) GOOS=linux GOARCH=amd64 go build -o spiff++/spiff++ .
zip spiff++/spiff_linux_amd64.zip spiff++/spiff++
rm spiff++/spiff++

spiff_darwin_amd64.zip:
GOPATH=$(GOPATH) GOOS=darwin GOARCH=amd64 go build -o spiff++ .
zip spiff_darwin_amd64.zip spiff++
rm spiff++
GOPATH=$(GOPATH) GOOS=darwin GOARCH=amd64 go build -o spiff++/spiff++ .
zip spiff++/spiff_darwin_amd64.zip spiff++/spiff++
rm spiff++/spiff++
Loading

0 comments on commit ffb5379

Please sign in to comment.