Merge pull request #21 from noocsharp/master
Fix error with non-interactive use
This commit is contained in:
commit
6b821ac913
2
pash
2
pash
|
@ -217,7 +217,7 @@ main() {
|
||||||
|
|
||||||
# Ensure that we leave the terminal in a usable
|
# Ensure that we leave the terminal in a usable
|
||||||
# state on exit or Ctrl+C.
|
# state on exit or Ctrl+C.
|
||||||
trap 'stty echo icanon' INT EXIT
|
[ -t 1 ] && trap 'stty echo icanon' INT EXIT
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
a*) pw_add "$2" ;;
|
a*) pw_add "$2" ;;
|
||||||
|
|
Loading…
Reference in New Issue