-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/fish | ||
# this build script is very basic. This is just intended to build all | ||
# "supported"(big airquote) platforms executables. | ||
|
||
mkdir -p build | ||
set -x GOOS linux | ||
go build -o ./build/emoji-dl-linux | ||
set -x GOOS darwin | ||
go build -o ./build/emoji-dl-osx | ||
set -x GOOS freebsd | ||
go build -o ./build/emoji-dl-free | ||
set -x GOOS netbsd | ||
go build -o ./build/emoji-dl-net | ||
set -x GOOS linux; set -x GOARCH 386 | ||
go build -o ./build/emoji-dl-linux-386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1 @@ | ||
module github.com/oct2pus/emoji-dl | ||
|
||
require ( | ||
github.com/gogo/protobuf v1.2.1 // indirect | ||
github.com/gorilla/mux v1.7.1 | ||
github.com/hashicorp/golang-lru v0.5.1 // indirect | ||
github.com/neelance/parallel v0.0.0-20160708114440-4de9ce63d14c // indirect | ||
github.com/opentracing/basictracer-go v1.0.0 // indirect | ||
github.com/opentracing/opentracing-go v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v0.9.2 // indirect | ||
github.com/slimsag/godocmd v0.0.0-20161025000126-a1005ad29fe3 // indirect | ||
github.com/sourcegraph/ctxvfs v0.0.0-20180418081416-2b65f1b1ea81 // indirect | ||
github.com/sourcegraph/go-langserver v2.0.0+incompatible // indirect | ||
github.com/sourcegraph/jsonrpc2 v0.0.0-20190106185902-35a74f039c6a // indirect | ||
golang.org/x/net v0.0.0-20190424024845-afe8014c977f // indirect | ||
golang.org/x/tools v0.0.0-20190424031103-cb2dda6eabdf // indirect | ||
) |