@sentry/cli 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/checksums.txt +9 -9
- package/package.json +1 -1
- package/scripts/install.js +3 -7
package/checksums.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
sentry-cli-Darwin-arm64=
|
|
2
|
-
sentry-cli-Darwin-universal=
|
|
3
|
-
sentry-cli-Darwin-x86_64=
|
|
4
|
-
sentry-cli-Linux-aarch64=
|
|
5
|
-
sentry-cli-Linux-armv7=
|
|
6
|
-
sentry-cli-Linux-i686=
|
|
7
|
-
sentry-cli-Linux-x86_64=
|
|
8
|
-
sentry-cli-Windows-i686.exe=
|
|
9
|
-
sentry-cli-Windows-x86_64.exe=
|
|
1
|
+
sentry-cli-Darwin-arm64=38c0c6c973cfa3cf9d8786addfb489f8ba3691cbce4ff3742702625bbf3b2369
|
|
2
|
+
sentry-cli-Darwin-universal=60b03ee1316558dd5b0317e7e14876595672eb3b6a22ceb40b3d73a656a9b34b
|
|
3
|
+
sentry-cli-Darwin-x86_64=4833012ab22592c2e3414367eaaa7b6697b4900983ca89b1b7f37881c5976475
|
|
4
|
+
sentry-cli-Linux-aarch64=df81846e4969b2acbad8d70810eca6d6621b69b16b2e3497f437955849489887
|
|
5
|
+
sentry-cli-Linux-armv7=bd5cee95cec37fe4c3d4be98d7aba928393cdceba295676907e5f40eb2817e9d
|
|
6
|
+
sentry-cli-Linux-i686=6c60b9718571843a14a57463d2f2939aad44428db8bb6e6d26897e5fb8748e5f
|
|
7
|
+
sentry-cli-Linux-x86_64=b88ae7e44706772812864f8f9a56871cb984bd478b7de8b583bbf3442fad4c1c
|
|
8
|
+
sentry-cli-Windows-i686.exe=641d20451d0a468729fb9406e8eac3b43351f61e7b0328162741fce1ac17b8c3
|
|
9
|
+
sentry-cli-Windows-x86_64.exe=6694e2fcd8a5ecd7322e42e179e869323482378b8f07d75da19e199478d46277
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
|
|
5
5
|
"repository": "git://github.com/getsentry/sentry-cli.git",
|
|
6
6
|
"homepage": "https://docs.sentry.io/hosted/learn/cli/",
|
package/scripts/install.js
CHANGED
|
@@ -230,13 +230,9 @@ async function downloadBinary() {
|
|
|
230
230
|
redirect: 'follow',
|
|
231
231
|
});
|
|
232
232
|
} catch (error) {
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
);
|
|
237
|
-
} else {
|
|
238
|
-
throw error;
|
|
239
|
-
}
|
|
233
|
+
throw new Error(
|
|
234
|
+
`Unable to download sentry-cli binary from ${downloadUrl}.\nError message: ${error.message}\nError code: ${error.code}`
|
|
235
|
+
);
|
|
240
236
|
}
|
|
241
237
|
|
|
242
238
|
if (!response.ok) {
|