summaryrefslogtreecommitdiff
path: root/sudo_darwin.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-07 04:55:46 -0500
committerJeff Carr <[email protected]>2025-10-07 04:55:46 -0500
commit46d67313cff2fc06975a53059f38555bc04d820e (patch)
tree925d128416c8d7779acb831465053b6b757e0b2e /sudo_darwin.go
parent8c15048135fbf64592aa9fe31466ed09d520d2b0 (diff)
add sudo but it doesn't work and isn't rightv0.0.29
Diffstat (limited to 'sudo_darwin.go')
-rw-r--r--sudo_darwin.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/sudo_darwin.go b/sudo_darwin.go
new file mode 100644
index 0000000..4e082ec
--- /dev/null
+++ b/sudo_darwin.go
@@ -0,0 +1,12 @@
+package fhelp
+
+// auto run protoc with the correct args
+
+import (
+ "go.wit.com/log"
+)
+
+func osSudo(cmd []string) error {
+ log.Info("todo: add instructions on macos to sudo")
+ return log.Errorf("no sudo")
+}