From 8cfeffe08c3865de0dc1eb1c829eaf0da885d143 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 20 Aug 2023 20:20:57 +0200 Subject: [PATCH] manifest: fix autoupdate regex syntax --- manifest.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.toml b/manifest.toml index 054cf9f..9c802dc 100644 --- a/manifest.toml +++ b/manifest.toml @@ -67,10 +67,10 @@ ram.runtime = "350M" autoupdate.strategy = "latest_github_release" - autoupdate.asset.arm64 = "*-arm64.tgz" - autoupdate.asset.amd64 = "*-x86_64.tgz" - autoupdate.asset.armhf = "*-armhf.tgz" - autoupdate.asset.i386 = "*-x86.tgz" + autoupdate.asset.arm64 = ".*-arm64.tgz" + autoupdate.asset.amd64 = ".*-x86_64.tgz" + autoupdate.asset.armhf = ".*-armhf.tgz" + autoupdate.asset.i386 = ".*-x86.tgz" [resources.ports] main.default = 9001