mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02:00
Revert "Fix sudo in the darwin installer (#10128)"
This reverts commit 686405ef41
.
This commit is contained in:
parent
73cf23275e
commit
739f53aca4
1 changed files with 5 additions and 6 deletions
|
@ -69,17 +69,16 @@ readonly PROXY_ENVIRONMENT_VARIABLES=(
|
|||
NO_PROXY
|
||||
)
|
||||
|
||||
SUDO_KEPT_ENVIRONMENT_VARIABLES=""
|
||||
SUDO_EXTRA_ENVIRONMENT_VARIABLES=()
|
||||
|
||||
setup_sudo_extra_environment_variables() {
|
||||
local i=${#SUDO_EXTRA_ENVIRONMENT_VARIABLES[@]}
|
||||
for variable in "${PROXY_ENVIRONMENT_VARIABLES[@]}"; do
|
||||
if [ "x${!variable:-}" != "x" ]; then
|
||||
SUDO_KEPT_ENVIRONMENT_VARIABLES="$SUDO_KEPT_ENVIRONMENT_VARIABLES,$variable"
|
||||
SUDO_EXTRA_ENVIRONMENT_VARIABLES[i]="$variable=${!variable}"
|
||||
i=$((i + 1))
|
||||
fi
|
||||
done
|
||||
|
||||
# Required by the darwin installer
|
||||
export SUDO_KEPT_ENVIRONMENT_VARIABLES
|
||||
}
|
||||
|
||||
setup_sudo_extra_environment_variables
|
||||
|
@ -387,7 +386,7 @@ _sudo() {
|
|||
if is_root; then
|
||||
env "$@"
|
||||
else
|
||||
sudo --preserve-env="$SUDO_KEPT_ENVIRONMENT_VARIABLES" "$@"
|
||||
sudo "${SUDO_EXTRA_ENVIRONMENT_VARIABLES[@]}" "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue