From 6b72474053b50634edb4456fd2ce433459fa8a2d Mon Sep 17 00:00:00 2001 From: oddlama Date: Sat, 4 Jan 2020 14:19:21 +0100 Subject: [PATCH] Fixed missing >&3 conversion after log removal --- README.md | 2 ++ scripts/utils.sh | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e05eabb..aacdb7f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/scripts/utils.sh b/scripts/utils.sh index 2061308..fcd965f 100644 --- a/scripts/utils.sh +++ b/scripts/utils.sh @@ -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() {