diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-03-25 09:04:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 09:04:24 +0100 |
commit | eb1911e277bfcc1b161cb996205ae1696f496099 (patch) | |
tree | d1173e217e5ec37e066dea6e5e26f05b11743e11 | |
parent | 0a10854f857e519d1455ff0f0be1f8401c40a11c (diff) | |
parent | 7313aa267b5be1e5264e4577e7bc3daec2fef282 (diff) |
Merge pull request #3445 from gnprice/pr-installer-colors
installer: Fix terminal colors.
-rw-r--r-- | scripts/install-multi-user.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/install-multi-user.sh b/scripts/install-multi-user.sh index 35341543e..a0f1deb98 100644 --- a/scripts/install-multi-user.sh +++ b/scripts/install-multi-user.sh @@ -13,12 +13,12 @@ set -o pipefail # however tracking which bits came from which would be impossible. readonly ESC='\033[0m' -readonly BOLD='\033[38;1m' -readonly BLUE='\033[38;34m' -readonly BLUE_UL='\033[38;4;34m' -readonly GREEN='\033[38;32m' -readonly GREEN_UL='\033[38;4;32m' -readonly RED='\033[38;31m' +readonly BOLD='\033[1m' +readonly BLUE='\033[34m' +readonly BLUE_UL='\033[4;34m' +readonly GREEN='\033[32m' +readonly GREEN_UL='\033[4;32m' +readonly RED='\033[31m' readonly NIX_USER_COUNT="32" readonly NIX_BUILD_GROUP_ID="30000" |