Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@

# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

vendor/*
!vendor/vendor.json

/appify
/testdata/app
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
GO_VENDOR := $(shell which govendor)

test:
go build -o testdata/app testdata/app.go
go build -o appify
go test
rm appify
rm testdata/app

install-govendor:
if [ "$(GO_VENDOR)" == "" ] ; then go get github.com/kardianos/govendor ; fi

deps:
govendor sync
31 changes: 31 additions & 0 deletions vendor/vendor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"comment": "",
"ignore": "test",
"package": [
{
"checksumSHA1": "75INt2o3smWl9G+TPLxSE8LLDr8=",
"path": "github.com/JackMordaunt/icns",
"revision": "98e1c42c5bdcc581c2fe75a8e665a4c405de9e05",
"revisionTime": "2018-05-24T11:23:08Z"
},
{
"checksumSHA1": "6rJRLbRxATT44ljt4rDSk1UW5yg=",
"path": "github.com/matryer/is",
"revision": "be846f6cea707577c0d3a1e055d6cb719b68d533",
"revisionTime": "2018-05-17T10:23:37Z"
},
{
"checksumSHA1": "6z9MgcvNbdVGsAIvv6BHA1uALQA=",
"path": "github.com/nfnt/resize",
"revision": "83c6a9932646f83e3267f353373d47347b6036b2",
"revisionTime": "2018-02-21T19:10:11Z"
},
{
"checksumSHA1": "xCv4GBFyw07vZkVtKF/XrUnkHRk=",
"path": "github.com/pkg/errors",
"revision": "e881fd58d78e04cf6d0de1217f8707c8cc2249bc",
"revisionTime": "2017-12-16T07:03:16Z"
}
],
"rootPath": "github.com/machinebox/appify"
}