Skip to content
Snippets Groups Projects
Verified Commit 57e1e77c authored by alex's avatar alex
Browse files

gnu/linux installer: replace read -r with read REPLY

parent 309c765c
Branches
No related tags found
No related merge requests found
#!/usr/bin/env sh
#
# Copyright (C) 2019-2020, 2022 Alexandros Theodotou <alex at zrythm dot org>
# Copyright (C) 2019-2020, 2022-2023 Alexandros Theodotou <alex at zrythm dot org>
#
# This file is part of Zrythm
#
......@@ -86,7 +86,7 @@ if [ $have_zenity -ne 0 ]; then
fi
else
echo "$proceed_txt (type Y or y): " | tr -d '\n' &&
read -r
read REPLY
if [ "$REPLY" = "y" ] || [ "$REPLY" = "Y" ]; then
proceed=1
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment