1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/UMS_ynh.git synced 2024-10-01 13:35:01 +02:00

manifest: fix autoupdate regex syntax

This commit is contained in:
Alexandre Aubin 2023-08-20 20:20:57 +02:00 committed by GitHub
parent e07a2cf3fd
commit 8cfeffe08c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,10 +67,10 @@ ram.runtime = "350M"
autoupdate.strategy = "latest_github_release" autoupdate.strategy = "latest_github_release"
autoupdate.asset.arm64 = "*-arm64.tgz" autoupdate.asset.arm64 = ".*-arm64.tgz"
autoupdate.asset.amd64 = "*-x86_64.tgz" autoupdate.asset.amd64 = ".*-x86_64.tgz"
autoupdate.asset.armhf = "*-armhf.tgz" autoupdate.asset.armhf = ".*-armhf.tgz"
autoupdate.asset.i386 = "*-x86.tgz" autoupdate.asset.i386 = ".*-x86.tgz"
[resources.ports] [resources.ports]
main.default = 9001 main.default = 9001