Patch sentry-cli manifest per review

Apply @Ash258's changes to simplify the sentry-cli manifest, and correct the executable name.
This commit is contained in:
Alastair Smith 2020-01-20 09:54:51 +00:00 committed by GitHub
parent 4a40b68e49
commit e18332f908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,45 +1,36 @@
{ {
"license": { "version": "1.49.0",
"identifier": "BSD-3-Clause", "description": "Connect to the Sentry API and manage projects related data.",
"url": "https://github.com/getsentry/sentry-cli/blob/master/LICENSE" "homepage": "https://docs.sentry.io/cli/",
}, "license": "BSD-3-Clause",
"description": "A command line utility to work with Sentry.",
"depends": "",
"homepage": "https://sentry.io",
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/getsentry/sentry-cli/releases/download/1.49.0/sentry-cli-Windows-x86_64.exe", "url": "https://github.com/getsentry/sentry-cli/releases/download/1.49.0/sentry-cli-Windows-x86_64.exe#/sentry.exe",
"hash": "2411467473e516db670b69afa7ab4c2a7124b361c38a361071e14ee2b7135d06", "hash": "2411467473e516db670b69afa7ab4c2a7124b361c38a361071e14ee2b7135d06"
"bin": [
[
"sentry-cli-Windows-x86_64.exe",
"sentry"
]
]
}, },
"32bit": { "32bit": {
"url": "https://github.com/getsentry/sentry-cli/releases/download/1.49.0/sentry-cli-Windows-i686.exe", "url": "https://github.com/getsentry/sentry-cli/releases/download/1.49.0/sentry-cli-Windows-i686.exe#/sentry.exe",
"hash": "fc7b9a77c7745c82aa8fc8b79c18c7b27403b1fc26505dd8345c5dc2356a5393", "hash": "fc7b9a77c7745c82aa8fc8b79c18c7b27403b1fc26505dd8345c5dc2356a5393"
"bin": [
[
"sentry-cli-Windows-i686.exe",
"sentry"
]
]
} }
}, },
"bin": [
"sentry.exe",
[
"sentry.exe",
"sentry-cli"
]
],
"checkver": {
"github": "https://github.com/getsentry/sentry-cli"
},
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/getsentry/sentry-cli/releases/download/$version/sentry-cli-Windows-x86_64.exe" "url": "https://github.com/getsentry/sentry-cli/releases/download/$version/sentry-cli-Windows-x86_64.exe#/sentry.exe"
}, },
"32bit": { "32bit": {
"url": "https://github.com/getsentry/sentry-cli/releases/download/$version/sentry-cli-Windows-i686.exe" "url": "https://github.com/getsentry/sentry-cli/releases/download/$version/sentry-cli-Windows-i686.exe#/sentry.exe"
}
} }
} }
},
"checkver": {
"github": "https://github.com/getsentry/sentry-cli"
},
"version": "1.49.0"
} }