summaryrefslogtreecommitdiff
path: root/install_windows.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-31 17:19:53 -0500
committerJeff Carr <[email protected]>2025-08-31 17:19:53 -0500
commitcc5db9ba7ea3d4b636ea2870fe0a3f3decaa9177 (patch)
treec38629d8b3ade311e857dbb1a8b71a5d3f399e74 /install_windows.go
parentc847491037a9bdb4d315f8ef5a187dfcdcca1d51 (diff)
attempt to fix macos buildv0.0.14
Diffstat (limited to 'install_windows.go')
-rw-r--r--install_windows.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/install_windows.go b/install_windows.go
new file mode 100644
index 0000000..3e99f01
--- /dev/null
+++ b/install_windows.go
@@ -0,0 +1,12 @@
+package fhelp
+
+// auto run protoc with the correct args
+
+import (
+ "go.wit.com/log"
+)
+
+func osInstall(pkg string) error {
+ log.Info("todo: add instructions on windows to install", pkg)
+ return log.Errorf("user didn't install package %s", pkg)
+}