Fixed missing >&3 conversion after log removal
This commit is contained in:
parent
20fc085546
commit
6b72474053
|
@ -4,6 +4,8 @@
|
||||||
Optionally prepares ansible for automatic system configuration.
|
Optionally prepares ansible for automatic system configuration.
|
||||||
See [Install](#Install) for usage instructions.
|
See [Install](#Install) for usage instructions.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
This script will install a minimal bootable gentoo system.
|
This script will install a minimal bootable gentoo system.
|
||||||
If you need advanced features such as an initramfs or a different
|
If you need advanced features such as an initramfs or a different
|
||||||
partitioning scheme, you can definitely use this script but will
|
partitioning scheme, you can definitely use this script but will
|
||||||
|
|
|
@ -90,15 +90,15 @@ try() {
|
||||||
}
|
}
|
||||||
|
|
||||||
countdown() {
|
countdown() {
|
||||||
echo -n "$1" >&3
|
echo -n "$1" >&2
|
||||||
|
|
||||||
local i="$2"
|
local i="$2"
|
||||||
while [[ $i -gt 0 ]]; do
|
while [[ $i -gt 0 ]]; do
|
||||||
echo -n "[1;31m$i[m " >&3
|
echo -n "[1;31m$i[m " >&2
|
||||||
i=$((i - 1))
|
i=$((i - 1))
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
echo >&3
|
echo >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
download_stdout() {
|
download_stdout() {
|
||||||
|
|
Loading…
Reference in New Issue