Skip to content

Commit

Permalink
UpdatePackagePath had a typo, missing the bracket for accessing the a…
Browse files Browse the repository at this point in the history
…rray (#226)
  • Loading branch information
RecursiveProgrammer authored Jan 29, 2021
1 parent 93f2e42 commit bc7980d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Server/wwwroot/Downloads/Install-Linux-x64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ do
systemctl daemon-reload
exit
elif [ "${Args[$i]}" = "--path" ]; then
UpdatePackagePath="${Args[$i+1}"
UpdatePackagePath="${Args[$i+1]}"
fi
done

Expand Down Expand Up @@ -95,4 +95,4 @@ echo "$serviceConfig" > /etc/systemd/system/remotely-agent.service
systemctl enable remotely-agent
systemctl restart remotely-agent

echo Install complete.
echo Install complete.
4 changes: 2 additions & 2 deletions Server/wwwroot/Downloads/Install-Ubuntu-x64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ do
systemctl daemon-reload
exit
elif [ "${Args[$i]}" = "--path" ]; then
UpdatePackagePath="${Args[$i+1}"
UpdatePackagePath="${Args[$i+1]}"
fi
done

Expand Down Expand Up @@ -95,4 +95,4 @@ echo "$serviceConfig" > /etc/systemd/system/remotely-agent.service
systemctl enable remotely-agent
systemctl restart remotely-agent

echo Install complete.
echo Install complete.

0 comments on commit bc7980d

Please sign in to comment.