diff options
author | scarf <greenscarf005@gmail.com> | 2023-06-15 14:47:18 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-15 14:47:18 +0900 |
commit | 80451b762d71bfbc14dbd2c2d88fda7dcb9571cf (patch) | |
tree | f53cf12ee5439dd041852349eeef6a673bcd13d9 /scripts | |
parent | 4b487317c30060024df436d010e6126be3a3d49e (diff) |
style: use plurals in uid ranges
Co-authored-by: John Ericson <git@JohnEricson.me>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/install-multi-user.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-multi-user.sh b/scripts/install-multi-user.sh index 45885bfd9..656769d84 100644 --- a/scripts/install-multi-user.sh +++ b/scripts/install-multi-user.sh @@ -701,7 +701,7 @@ EOF welcome_to_nix() { local -r NIX_UID_RANGES="${NIX_FIRST_BUILD_UID}..$((NIX_FIRST_BUILD_UID + NIX_USER_COUNT - 1))" - local -r RANGE_TEXT=$(echo -ne "${BLUE}(uid [${NIX_UID_RANGES}])${ESC}") + local -r RANGE_TEXT=$(echo -ne "${BLUE}(uids [${NIX_UID_RANGES}])${ESC}") local -r GROUP_TEXT=$(echo -ne "${BLUE}(gid ${NIX_BUILD_GROUP_ID})${ESC}") ok "Welcome to the Multi-User Nix Installation" |