summaryrefslogtreecommitdiff
path: root/gui/.gitignore
diff options
context:
space:
mode:
authorCalvin Morrison <calvin@pobox.com>2026-08-22 17:01:16 -0400
committerCalvin Morrison <calvin@pobox.com>2026-08-22 17:01:16 -0400
commitba00c7dab8ea982fc3fdbfc7062234adbe1fcc0e (patch)
treeebc1f0c9b29ef20ed9941b46f347c39907387627 /gui/.gitignore
parent560712f12a496678a703818dd51a1df9bdab77d2 (diff)
ignore the binaries go build leaves at the module root
"go build ./cmd/x" writes the binary to the current directory, not to bin/, so pim/caldavfs and gui/spike were showing up as new files a stray "git add ." would have committed. Anchored with a leading slash so a source file of the same name deeper in the tree still counts. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Diffstat (limited to 'gui/.gitignore')
-rw-r--r--gui/.gitignore9
1 files changed, 9 insertions, 0 deletions
diff --git a/gui/.gitignore b/gui/.gitignore
index b10d965..7613431 100644
--- a/gui/.gitignore
+++ b/gui/.gitignore
@@ -1,3 +1,12 @@
# cross-compiled guest binaries
*.9
probe/hello-go1.*
+
+# "go build ./cmd/x" drops the binary in the current directory
+/spike
+/hello
+/text
+/cal
+cmd/*/spike
+cmd/*/hello
+cmd/*/text