Skip to content

Commit 85b74e3

Browse files
vmcjeldering
authored andcommitted
Remove legacy behaviour
Since 2015 this should not be needed anymore. See: https://github-wiki-see.page/m/koalaman/shellcheck/wiki/SC2268
1 parent d8a08c1 commit 85b74e3

File tree

1 file changed

+1
-1
lines changed
  • live-image/files/usr/local/sbin

1 file changed

+1
-1
lines changed

live-image/files/usr/local/sbin/dj_live

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ EOF
6565
if [ -z "$PASS" ]; then
6666
read -esr -p "Enter new admin user password: " PASS1 ; echo
6767
read -esr -p "Retype new admin user password: " PASS2 ; echo
68-
[ "x$PASS1" = "x$PASS2" ] || error "passwords do not match."
68+
[ "$PASS1" = "$PASS2" ] || error "passwords do not match."
6969
PASS="$PASS1"
7070
fi
7171

0 commit comments

Comments
 (0)