summaryrefslogtreecommitdiff
path: root/sudo_windows.go
blob: cad5936dbc11fcf16fcd5484ee0feb47f4ab8e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 windows to sudo")
	return log.Errorf("user needs root")
}