don't fail to ask for a password if there is no TTY
[grml-debootstrap.git] / chroot-script
index d3535b0..86f1535 100755 (executable)
@@ -55,9 +55,9 @@ stage() {
 askpass() {
   # read -s emulation for dash. result is in $resp.
   set -o noglob
-  stty -echo
+  [ -t 0 ] && stty -echo
   read resp
-  stty echo
+  [ -t 0 ] && stty echo
   set +o noglob
 }
 # }}}