Skip to content

Commit 35738e8

Browse files
committed
Fix styling
1 parent a1df4f3 commit 35738e8

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

dist/setup/index.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -66741,16 +66741,15 @@ function installCpythonFromRelease(release) {
6674166741
yield installPython(pythonExtractedFolder);
6674266742
}
6674366743
catch (err) {
66744-
if (err instanceof Error) {
66744+
if (err instanceof tc.HTTPError) {
6674566745
// Rate limit?
66746-
if (err instanceof tc.HTTPError &&
66747-
(err.httpStatusCode === 403 || err.httpStatusCode === 429)) {
66746+
if (err.httpStatusCode === 403 || err.httpStatusCode === 429) {
6674866747
core.info(`Received HTTP status code ${err.httpStatusCode}. This usually indicates the rate limit has been exceeded`);
6674966748
}
6675066749
else {
6675166750
core.info(err.message);
6675266751
}
66753-
if (err.stack !== undefined) {
66752+
if (err.stack) {
6675466753
core.debug(err.stack);
6675566754
}
6675666755
}

src/install-python.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,16 @@ export async function installCpythonFromRelease(release: tc.IToolRelease) {
8686
core.info('Execute installation script');
8787
await installPython(pythonExtractedFolder);
8888
} catch (err) {
89-
if (err instanceof Error) {
89+
if (err instanceof tc.HTTPError) {
9090
// Rate limit?
91-
if (
92-
err instanceof tc.HTTPError &&
93-
(err.httpStatusCode === 403 || err.httpStatusCode === 429)
94-
) {
91+
if (err.httpStatusCode === 403 || err.httpStatusCode === 429) {
9592
core.info(
9693
`Received HTTP status code ${err.httpStatusCode}. This usually indicates the rate limit has been exceeded`
9794
);
9895
} else {
9996
core.info(err.message);
10097
}
101-
if (err.stack !== undefined) {
98+
if (err.stack) {
10299
core.debug(err.stack);
103100
}
104101
}

0 commit comments

Comments
 (0)