Skip to content

Commit 3f447bc

Browse files
authored
Merge pull request NixOS#5488 from JanCVanB/patch-1
Reword "we"s to "I"s for consistency
2 parents 1e7c796 + 7d56174 commit 3f447bc

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

scripts/install-multi-user.sh

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ manager. This will happen in a few stages:
599599
1. Make sure your computer doesn't already have Nix. If it does, I
600600
will show you instructions on how to clean up your old install.
601601
602-
2. Show you what we are going to install and where. Then we will ask
602+
2. Show you what I am going to install and where. Then I will ask
603603
if you are ready to continue.
604604
605605
3. Create the system users and groups that the Nix daemon uses to run
@@ -614,14 +614,14 @@ manager. This will happen in a few stages:
614614
615615
EOF
616616

617-
if ui_confirm "Would you like to see a more detailed list of what we will do?"; then
617+
if ui_confirm "Would you like to see a more detailed list of what I will do?"; then
618618
cat <<EOF
619619
620-
We will:
620+
I will:
621621
622622
- make sure your computer doesn't already have Nix files
623623
(if it does, I will tell you how to clean them up.)
624-
- create local users (see the list above for the users we'll make)
624+
- create local users (see the list above for the users I'll make)
625625
- create a local group ($NIX_BUILD_GROUP_NAME)
626626
- install Nix in to $NIX_ROOT
627627
- create a configuration file in /etc/nix
@@ -656,7 +656,7 @@ run in a headless fashion, like this:
656656
657657
$ curl -L https://nixos.org/nix/install | sh
658658
659-
or maybe in a CI pipeline. Because of that, we're going to skip the
659+
or maybe in a CI pipeline. Because of that, I'm going to skip the
660660
verbose output in the interest of brevity.
661661
662662
If you would like to
@@ -670,7 +670,7 @@ EOF
670670
fi
671671

672672
cat <<EOF
673-
This script is going to call sudo a lot. Every time we do, it'll
673+
This script is going to call sudo a lot. Every time I do, it'll
674674
output exactly what it'll do, and why.
675675
676676
Just like this:
@@ -682,15 +682,15 @@ EOF
682682
cat <<EOF
683683
684684
This might look scary, but everything can be undone by running just a
685-
few commands. We used to ask you to confirm each time sudo ran, but it
685+
few commands. I used to ask you to confirm each time sudo ran, but it
686686
was too many times. Instead, I'll just ask you this one time:
687687
688688
EOF
689-
if ui_confirm "Can we use sudo?"; then
689+
if ui_confirm "Can I use sudo?"; then
690690
ok "Yay! Thanks! Let's get going!"
691691
else
692692
failure <<EOF
693-
That is okay, but we can't install.
693+
That is okay, but I can't install.
694694
EOF
695695
fi
696696
}
@@ -811,8 +811,8 @@ main() {
811811
# pre-Catalina macOS if run as root user.
812812
if [ $EUID -eq 0 ]; then
813813
failure <<EOF
814-
Please do not run this script with root privileges. We will call sudo
815-
when we need to.
814+
Please do not run this script with root privileges. I will call sudo
815+
when I need to.
816816
EOF
817817
fi
818818

0 commit comments

Comments
 (0)