From 2779bf51c26e50ad4f625389896f135fb5ccf6e2 Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Sat, 16 Oct 2021 10:34:21 -0400 Subject: [PATCH] Update update_services.sh --- scripts/update_services.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/update_services.sh b/scripts/update_services.sh index 78fe95a..97e3b4c 100755 --- a/scripts/update_services.sh +++ b/scripts/update_services.sh @@ -398,9 +398,9 @@ EOF install_nomachine() { if [ ! -d /usr/share/NX ];then echo "Installing NoMachine" - curl -s -O "${nomachine_url}" - apt install -y ${HOME}/nomachine_7.6.2_3_arm64.deb - rm -f ${HOME}/nomachine_7.6.2_3_arm64.deb + curl -s -o ${HOME}/nomachine.deb -O "${nomachine_url}" + apt install -y ${HOME}/nomachine.deb + rm -f ${HOME}/nomachine.deb fi }