blob: 2accf61913c9445fa87a3e1b5178d077dd9e770b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
# 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 ./...
|