summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/main.go b/main.go
index 8ec8850..74aabb4 100644
--- a/main.go
+++ b/main.go
@@ -35,7 +35,6 @@ Options:
:a -> ask before doing
:nl -> disable recording in databases and logs
:nd -> do not download deps
- :nrc -> disable uid 0 (root) checks
:r -> reinstall already installed deps
Vars:
DESTDIR -> path where the package will be installed/removed`
@@ -79,11 +78,6 @@ func main() {
os.Exit(1)
}
- if os.Getuid() != 0 && slices.Contains(_root_cmds, cmds[0]) && !slices.Contains(opts, ":nrc") {
- fmt.Println("!! this command is root-only. run this with root privileges")
- os.Exit(1)
- }
-
// fmt.Println(cmds, oths, opts)
if cmds[0] == "h" {
printHelp()