Skip to content

Commit 7be5983

Browse files
committed
Adding -L flag to curl, cleaning up wording
1 parent f9f5412 commit 7be5983

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ A problem with Bash is that it doesn't have a package manager, unlike other lang
1111
Installation and Upgrade Instructions
1212
-------------------------------------
1313

14-
To install for everyone on the system, run these commands. This folder should already be in your `$PATH`, so it should be searched automatically when running commands. Other users on the system won't need to do anything to run this program.
14+
To install for everyone on the system, run these commands. This folder should already be in your `$PATH`, so it should be searched automatically when running commands. Other users on the system won't need to do anything to run this program. It is preferred to use this method when possible.
1515

16-
curl -sSO https://git.io/bpm
16+
curl -sSOL https://git.io/bpm
1717
chmod 755 bpm
1818
sudo mv bpm /usr/bin/
1919

20-
The other option is to install it just for you into your own `bin/` folder. This assumes you've already created a `bin/` folder. You almost certainly need to add your `bin/` folder to `$PATH` so it is searched for commands. Other users on the system will also need to do the same if they want to run any commands that use `bpm` to find libraries.
20+
The other option is to install it just for you into your own `~/bin/` folder. This assumes you've already created a `~/bin/` folder. You almost certainly need to add your `~/bin/` folder to `$PATH` so it is searched for programs. Other users on the system will also need to do the same if they want to run any commands that use `bpm` to find libraries. Use this method when you do not have administrator access to a machine.
2121

22-
curl -sSO https://git.io/bpm
22+
curl -sSOL https://git.io/bpm
2323
chmod 755 bpm
2424
mv bpm ~/bin/
2525

0 commit comments

Comments
 (0)