You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/app/app.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ func (i *Installer) CheckSudoAccess() error {
38
38
cmd:=exec.Command("sudo", "-n", "true")
39
39
cmd.Stderr=os.Stderr
40
40
iferr:=cmd.Run(); err!=nil {
41
-
returnfmt.Errorf("this installer requires sudo privileges. Please ensure you have sudo access and try again")
41
+
returnfmt.Errorf("this installer requires sudo privileges. Please ensure you have sudo access and try again. You can run `sudo usermod -aG sudo <user>` to add your user to the sudoers group")
0 commit comments