diff --git a/src/cli.py b/src/cli.py index b7c66fa..6eace35 100755 --- a/src/cli.py +++ b/src/cli.py @@ -80,7 +80,7 @@ builtins.howdy_user = args.user # Check if we have rootish rights # This is this far down the file so running the command for help is always possible -if os.getenv("SUDO_USER") is None: +if not os.geteuid()==0: print("Please run this command as root:\n") print("\tsudo howdy " + " ".join(sys.argv[1:])) sys.exit(1)