summaryrefslogtreecommitdiff
path: root/argv.parseOsArgs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-28 23:41:21 -0500
committerJeff Carr <[email protected]>2025-10-28 23:41:21 -0500
commit6b78f1857fe35d39bfef3e5e8a03cbd0e71fa169 (patch)
treebfd7ae418aa5968583d0b3c1072a230e2e8e1f0d /argv.parseOsArgs.go
parentd1c6c000ccedf21e356ee30411b861b544313e18 (diff)
never shoulda been caps
Diffstat (limited to 'argv.parseOsArgs.go')
-rw-r--r--argv.parseOsArgs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/argv.parseOsArgs.go b/argv.parseOsArgs.go
index 37a477d..12c63ac 100644
--- a/argv.parseOsArgs.go
+++ b/argv.parseOsArgs.go
@@ -47,10 +47,10 @@ func (pb *Argv) getSubSubCmd() string {
for _, s := range pb.Real {
p := fmt.Sprintf("'%s'", s)
if pb.Partial == p {
- pb.Debugf("DEBUG: Last argv MATCHES Partial %s %s", s, p)
+ pb.debugf("DEBUG: Last argv MATCHES Partial %s %s", s, p)
continue
} else {
- pb.Debugf("DEBUG: Last argv DOES NOT MATCH Partial %s %s", s, p)
+ pb.debugf("DEBUG: Last argv DOES NOT MATCH Partial %s %s", s, p)
}
subcmd = s
}