blob: 850b26621d60f1c6fc786d68a7db4084b32a46f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#a git remote add github [email protected]:wit-go/gadgets.git
all:
@echo
@echo gadgets are collections of widget primaties that work
@echo in ways that are common enough they are generally useful
@echo
@echo The gadgets are themselves outside of the 'gui' binary tree
@echo structure. They do not modify the fundamental nature of
@echo how the 'gui' package communicates to the toolkits via the plugin
@echo
@echo in that sense, they are intended to be useful wrappers
@echo
redomod:
rm -f go.*
go mod init
go mod tidy
github:
git push -u github master
git push -u github devel
git push github --tags
|