mirror of
https://github.com/nix-community/disko.git
synced 2024-11-09 00:04:18 +03:00
Fix read shellcheck warning SC2162
Use `-r` to avoid mangling backslashes, use `IFS=` to not discard leading and trailing whitespace.
This commit is contained in:
parent
196a5deeea
commit
4122a18340
@ -108,9 +108,9 @@ in
|
||||
set +x
|
||||
askPassword() {
|
||||
echo "Enter password for ${config.device}: "
|
||||
read -s password
|
||||
IFS= read -r -s password
|
||||
echo "Enter password for ${config.device} again to be safe: "
|
||||
read -s password_check
|
||||
IFS= read -r -s password_check
|
||||
export password
|
||||
[ "$password" = "$password_check" ]
|
||||
}
|
||||
@ -140,7 +140,7 @@ in
|
||||
${lib.optionalString config.askPassword ''
|
||||
set +x
|
||||
echo "Enter password for ${config.device}"
|
||||
read -s password
|
||||
IFS= read -r -s password
|
||||
export password
|
||||
set -x
|
||||
''}
|
||||
|
Loading…
Reference in New Issue
Block a user