package uploader: attempt to fix errors when using on CI

This commit is contained in:
Leonid Pliushch 2019-03-17 13:04:59 +02:00
parent 3b9e82f830
commit b789ab46b1

View File

@ -93,8 +93,8 @@ msg() {
## Blocks terminal to prevent any user input.
## Takes no arguments.
block_terminal() {
stty -echo -icanon time 0 min 0
stty quit undef susp undef
stty -echo -icanon time 0 min 0 2>/dev/null || true
stty quit undef susp undef 2>/dev/null || true
}
@ -104,7 +104,7 @@ unblock_terminal() {
while read -r; do
true;
done
stty sane
stty sane 2>/dev/null || true
}