kiss: Don't use pass where unneeded

This commit is contained in:
Dylan Araps 2020-01-27 23:33:30 +02:00
parent 87e0cfd973
commit 4f4d220056
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 3 additions and 3 deletions

6
kiss
View File

@ -84,11 +84,11 @@ root_cache() {
# Validate the password now with a simple 'true' command as we
# don't yet need to elevate permissions.
dosu /bin/true
dosu /bin/true && have_pw=1
}
dosu() {
[ "$pass" ] || root_cache
[ "$have_pw" ] || root_cache
# Declare this as a function to avoid repeating it twice
# below. Great naming of functions all around.
@ -547,7 +547,7 @@ pkg_build() {
[ $# -gt 1 ] || [ "$pkg_update" ] && {
prompt
[ "$pass" ] || root_cache
[ "$have_pw" ] || root_cache
}
log "Checking to see if any dependencies have already been built"