2019-04-05 16:14:55 -05:00
|
|
|
all:
|
|
|
|
# 'gaper' is a simple and smart golang tool that just rebuilds every time you change a file
|
|
|
|
# go get -u github.com/maxcnunes/gaper
|
|
|
|
gaper
|
|
|
|
|
2019-04-25 00:43:13 -05:00
|
|
|
build-verbose:
|
|
|
|
go build -x -work
|
|
|
|
|
2019-04-05 16:14:55 -05:00
|
|
|
# simple sortcut to push all git changes
|
|
|
|
push:
|
|
|
|
git pull
|
|
|
|
git add --all
|
|
|
|
-git commit -a -s
|
|
|
|
git push
|
|
|
|
|
|
|
|
# should update every go dependancy (?)
|
|
|
|
update:
|
|
|
|
git pull
|
|
|
|
go get -v -t -u ./...
|