From be0d8779715a66748d978dd275a629000a0df380 Mon Sep 17 00:00:00 2001 From: Taylor Helsper Date: Sat, 2 Jan 2021 18:31:18 -0600 Subject: [PATCH] Fix pool verification in setup_device.sh --- setup/setup_device.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/setup_device.sh b/setup/setup_device.sh index e18974ca..4e2d774a 100755 --- a/setup/setup_device.sh +++ b/setup/setup_device.sh @@ -381,7 +381,7 @@ if [ $IS_X86 = 1 ]; then fi POOL_UPGRADE_URL=https://github.com/lightninglabs/pool/releases/download/$POOL_VERSION/$POOL_ARCH-$POOL_VERSION.tar.gz POOL_UPGRADE_MANIFEST_URL=https://github.com/lightninglabs/pool/releases/download/$POOL_VERSION/manifest-$POOL_VERSION.txt -POOL_UPGRADE_MANIFEST_SIG_URL=https://github.com/lightninglabs/pool/releases/download/$POOL_VERSION/manifest-$POOL_VERSION.txt.sig +POOL_UPGRADE_MANIFEST_SIG_URL=https://github.com/lightninglabs/pool/releases/download/$POOL_VERSION/manifest-$POOL_VERSION.txt.asc CURRENT="" if [ -f $POOL_VERSION_FILE ]; then CURRENT=$(cat $POOL_VERSION_FILE) @@ -396,7 +396,7 @@ if [ "$CURRENT" != "$POOL_VERSION" ]; then wget $POOL_UPGRADE_MANIFEST_URL wget $POOL_UPGRADE_MANIFEST_SIG_URL - gpg --verify manifest-*.txt.sig + gpg --verify manifest-*.txt.asc if [ $? == 0 ]; then # Install Pool tar -xzf pool-*.tar.gz