Fix comment

This commit is contained in:
Joel Kuzmarski 2016-08-20 18:54:43 -05:00
parent 0ae45bd2d2
commit d6e6a82c5b

View File

@ -131,7 +131,7 @@ main() {
# CTRL-C at the chsh password prompt will bubble up and kill this script, # CTRL-C at the chsh password prompt will bubble up and kill this script,
# so we set a benign trap on the INT signal to stop the bubbling. # so we set a benign trap on the INT signal to stop the bubbling.
trap 'true' INT trap 'true' INT
# We need a while loop so the user can retry after entering a bad password. # We need a loop so the user can retry after entering a bad password.
while true; do while true; do
# Attempt to change the default login shell. # Attempt to change the default login shell.
CHSH_ZSH_STDERR="$(chsh -s "$CHSH_ZSH" 2>&1)" && { CHSH_ZSH_STDERR="$(chsh -s "$CHSH_ZSH" 2>&1)" && {