diff options
| author | Jeff Carr <[email protected]> | 2024-01-17 03:02:12 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-17 03:02:12 -0600 |
| commit | 4feb266a1751a06d718d7261475e85787106399b (patch) | |
| tree | e95e21c413649a0ef6983df1b2b7dfea31f23f53 /Makefile | |
| parent | e691f1c52bcdefc3f41db9af36f8d1701f01b94a (diff) | |
dropdown menus work again
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,7 +1,14 @@ -all: - go build -v -x +all: build ./helloworld +build: + -rm -f helloworld + go build -v -x + +stderr: build + echo "writing to /tmp/helloworld.stderr" + ./helloworld >/tmp/helloworld.stderr 2>&1 + push: git add --all git commit -a |
