Skip to content

Commit fbdaa63

Browse files
Update version number
1 parent db9da1e commit fbdaa63

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

install.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ _add_path() {
6161
echo "[ OK ] $DIR/ is already in PATH."
6262
else
6363
# Nexus Tools directory needs to be added to $PATH
64-
if [ -f $HOME/.bashrc ]; then
64+
if [ -f "$HOME/.bashrc" ]; then
6565
echo 'export PATH=$PATH:'$DIR >> $HOME/.bashrc
66-
source $HOME/.bashrc
66+
source "$HOME/.bashrc"
6767
echo "[ OK ] Added $DIR/ to $HOME/.bashrc."
6868
fi
69-
if [ -f $HOME/.zshrc ]; then
69+
if [ -f "$HOME/.zshrc" ]; then
7070
echo 'export PATH=$PATH:'$DIR >> $HOME/.zshrc
71-
source $HOME/.zshrc
71+
source "$HOME/.zshrc"
7272
echo "[ OK ] Added $DIR/ to $HOME/.zshrc."
7373
fi
7474
fi
@@ -107,7 +107,7 @@ _analytics() {
107107
}
108108

109109
# Start the script
110-
echo "[INFO] Nexus Tools 4.2"
110+
echo "[INFO] Nexus Tools 4.2.1"
111111

112112
# Check that required applications are installed
113113
if ! [ -x "$(command -v curl)" ]; then

0 commit comments

Comments
 (0)