From 15121ea1ea36ccf0038f16b6b97fa1ebbe8fc3bd Mon Sep 17 00:00:00 2001 From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com> Date: Fri, 25 Feb 2022 17:21:46 +0100 Subject: [PATCH] Update APT --- scripts/add-debian-apt-repo.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/add-debian-apt-repo.sh b/scripts/add-debian-apt-repo.sh index 21eddfac..5589351d 100644 --- a/scripts/add-debian-apt-repo.sh +++ b/scripts/add-debian-apt-repo.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Make necessary config and add LOTW Softwares apt repo +# Make necessary config and add Qortal Softwares apt repo # SCript to run UI without sandbox echo \'/opt/${productFilename}/qortal-ui\' --no-sandbox > '/opt/${productFilename}/run-ui' @@ -21,7 +21,6 @@ if ! which curl; then sudo apt-get --yes install curl; fi # Install apt repository source list if it does not exist if ! grep ^ /etc/apt/sources.list /etc/apt/sources.list.d/* | grep qortal.list; then - curl -sS https://lotw.qortal.org/lotw_pub.gpg | sudo apt-key add - - echo "deb [arch=amd64] https://lotw.qortal.org/debian stable main" \ - | sudo tee /etc/apt/sources.list.d/qortal.list + curl -sS https://update.qortal.online/repo/qortal.gpg | sudo apt-key add - + echo 'deb https://update.qortal.online/repo/ ./ ' > /etc/apt/sources.list.d/qortal.list fi