blob: 2db36b4f01a7568879e121d27a2515283ad885b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# mk.sh puts binaries here
bin/
# "go build ./cmd/x" from the module root drops the binary in the
# current directory, not in bin/. Anchored with a leading / so a source
# file of the same name deeper in the tree is still tracked.
/icalfs
/caldavfs
/cal9
/datepick
# and "go build" inside a cmd directory leaves it there
cmd/*/icalfs
cmd/*/caldavfs
cmd/*/cal9
cmd/*/datepick
|