summaryrefslogtreecommitdiff
path: root/exit.go
diff options
context:
space:
mode:
authorCastor Gemini <[email protected]>2025-08-24 01:21:01 -0500
committerJeff Carr <[email protected]>2025-08-24 01:21:01 -0500
commit357c20027fda714af0e08b3f9ddf89edfeb6ef39 (patch)
tree8e69ca6ecc1a4e7b7c87ee4e5fbd2bd25f80b639 /exit.go
parent0a28d985b88866d131e3c6e2ce025edb99c1258c (diff)
Refactor: Rename gemini to regex throughout the codebase
Diffstat (limited to 'exit.go')
-rw-r--r--exit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/exit.go b/exit.go
index 8acd5e8..ad6195b 100644
--- a/exit.go
+++ b/exit.go
@@ -11,12 +11,12 @@ import (
func okExit(thing string) {
if thing != "" {
- log.Info("gemini exit:", thing, "ok")
+ log.Info("regex exit:", thing, "ok")
}
os.Exit(0)
}
func badExit(err error) {
- log.Info("gemini failed: ", err)
+ log.Info("regex failed: ", err)
os.Exit(-1)
}