We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eec99d2 commit d38a5f6Copy full SHA for d38a5f6
install.sh
@@ -48,14 +48,14 @@ detect_arch() {
48
49
prompt_install_path() {
50
echo -n "Installation path [/opt/vume]: "
51
- read -r path
+ read -r path < /dev/tty
52
INSTALL_PATH="${path:-/opt/vume}"
53
}
54
55
prompt_pool_device() {
56
local default_pool="$VUME_HOME/vume.zfs"
57
echo -n "ZFS pool device (leave empty for file-backed dev mode) [${default_pool}]: "
58
- read -r device
+ read -r device < /dev/tty
59
if [[ -n "$device" ]]; then
60
POOL_DEVICE="$device"
61
else
0 commit comments