We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fb62ed commit b0cb892Copy full SHA for b0cb892
configure.ac
@@ -1,4 +1,4 @@
1
-AC_INIT([systemd-boot-password],[0.9.0.232])
+AC_INIT([systemd-boot-password],[0.9.1.232])
2
3
AC_CONFIG_MACRO_DIR([m4])
4
AC_CONFIG_AUX_DIR([build-aux])
src/sbp-generate
@@ -12,8 +12,8 @@ function hash() {
12
printf "%s" "$password" | sha512sum | grep -Po [0-9a-fA-F]{128}
13
}
14
15
-hash1=`hash "Enter password"`
16
-hash2=`hash "Retype password"`
+hash1=`hash "Enter password"` || exit 1
+hash2=`hash "Retype password"` || exit 1
17
18
if [ "$hash1" == "$hash2" ]; then
19
echo "password $hash1"
0 commit comments