From 5182453bdd7b5fbed6dc808a9ff30cc052a2815d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 29 Jan 2020 13:24:49 +0200 Subject: [PATCH] kiss: Don't show prompts if root already --- kiss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kiss b/kiss index 1280ea8..8181392 100755 --- a/kiss +++ b/kiss @@ -74,6 +74,11 @@ root_cache() { # # This change was needed as the existing behavior was not ideal # in any way and needed to be fixed. + + # Pointless running this function if the user has chosen to run + # the package manager as root anyway. + [ "$(id -u)" != 0 ] || return 0 + printf 'Password: ' # Disable echoing to the terminal while the password is inputted