From bc7980dcf09aee30347b376c91751979fafc946d Mon Sep 17 00:00:00 2001 From: RecursiveProgrammer Date: Fri, 29 Jan 2021 13:54:21 -0600 Subject: [PATCH] UpdatePackagePath had a typo, missing the bracket for accessing the array (#226) --- Server/wwwroot/Downloads/Install-Linux-x64.sh | 4 ++-- Server/wwwroot/Downloads/Install-Ubuntu-x64.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Server/wwwroot/Downloads/Install-Linux-x64.sh b/Server/wwwroot/Downloads/Install-Linux-x64.sh index 7a4d0bc68..2dae1441d 100644 --- a/Server/wwwroot/Downloads/Install-Linux-x64.sh +++ b/Server/wwwroot/Downloads/Install-Linux-x64.sh @@ -17,7 +17,7 @@ do systemctl daemon-reload exit elif [ "${Args[$i]}" = "--path" ]; then - UpdatePackagePath="${Args[$i+1}" + UpdatePackagePath="${Args[$i+1]}" fi done @@ -95,4 +95,4 @@ echo "$serviceConfig" > /etc/systemd/system/remotely-agent.service systemctl enable remotely-agent systemctl restart remotely-agent -echo Install complete. \ No newline at end of file +echo Install complete. diff --git a/Server/wwwroot/Downloads/Install-Ubuntu-x64.sh b/Server/wwwroot/Downloads/Install-Ubuntu-x64.sh index 125172c16..261b864d3 100644 --- a/Server/wwwroot/Downloads/Install-Ubuntu-x64.sh +++ b/Server/wwwroot/Downloads/Install-Ubuntu-x64.sh @@ -17,7 +17,7 @@ do systemctl daemon-reload exit elif [ "${Args[$i]}" = "--path" ]; then - UpdatePackagePath="${Args[$i+1}" + UpdatePackagePath="${Args[$i+1]}" fi done @@ -95,4 +95,4 @@ echo "$serviceConfig" > /etc/systemd/system/remotely-agent.service systemctl enable remotely-agent systemctl restart remotely-agent -echo Install complete. \ No newline at end of file +echo Install complete.