Fixed missing >&3 conversion after log removal

This commit is contained in:
oddlama 2020-01-04 14:19:21 +01:00
parent 20fc085546
commit 6b72474053
No known key found for this signature in database
GPG Key ID: 88EA325D51D53908
2 changed files with 5 additions and 3 deletions

View File

@ -4,6 +4,8 @@
Optionally prepares ansible for automatic system configuration.
See [Install](#Install) for usage instructions.
---
This script will install a minimal bootable gentoo system.
If you need advanced features such as an initramfs or a different
partitioning scheme, you can definitely use this script but will

View File

@ -90,15 +90,15 @@ try() {
}
countdown() {
echo -n "$1" >&3
echo -n "$1" >&2
local i="$2"
while [[ $i -gt 0 ]]; do
echo -n "$i " >&3
echo -n "$i " >&2
i=$((i - 1))
sleep 1
done
echo >&3
echo >&2
}
download_stdout() {