From a51f57335d6ae0b6c750fb50bc074c44cfe8d2e0 Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Wed, 7 Sep 2022 02:27:16 +0200 Subject: [PATCH] Fixed typo in installer --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 132b3be..be0a200 100644 --- a/install.sh +++ b/install.sh @@ -19,7 +19,7 @@ fi OfflineIMAPVer=$(curl -s https://api.github.com/repos/OfflineIMAP/offlineimap3/tags | grep 'name.*' |head -n 1 | cut -d : -f 2,3 | tr -d \" |tr -d , |tr -d " "| tr -d : ) SnappyMailVer=$(curl -s https://api.github.com/repos/the-djmaze/snappymail/releases/latest | grep 'tag_name.*' | cut -d : -f 2,3 | tr -d \" |tr -d , |tr -d " "| tr -d : ) echo "$OfflineIMAPVer" > /opt/OfflineIMAP3-installed -echo "$SnappyMailVer" > /opt/SnappyMail-installed> +echo "$SnappyMailVer" > /opt/SnappyMail-installed curl -L https://github.com/the-djmaze/snappymail/releases/download/$SnappyMailVer/snappymail-${SnappyMailVer//v}.tar.gz -o /tmp/smc.tar.gz || exit 1 curl -L https://github.com/OfflineIMAP/offlineimap3/archive/refs/tags/$OfflineIMAPVer.tar.gz -o /tmp/olim3.tar.gz || exit 1