1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-08-06 14:16:33 +02:00

Indenting

This commit is contained in:
Ryan Greenup
2020-07-17 04:30:00 +10:00
parent 29a973d066
commit 6fdcbdec85

View File

@@ -49,7 +49,7 @@ To install:
|| echo "Delete ~/.cadmus first"
ln -s ~/.cadmus/bin/cadmus $HOME/bin/
```
3. add `$HOME/bin` to the `$PATH` variable, something like this should be fairly shell agnostic:
3. If you haven't already add `$HOME/bin` to the `$PATH` variable, something like this should be fairly shell agnostic:
``` bash
echo $PATH | grep "$HOME/bin" &> /dev/null && echo "$HOME/bin in path already" || ls "$HOME/bin" &> /dev/null && echo 'PATH="$PATH:$HOME/bin"' >> $HOME/.profile