mirror of
https://github.com/actions/setup-java.git
synced 2024-11-13 21:48:05 +00:00
chore: update wordings
This commit is contained in:
parent
6ba9d9dd2c
commit
b93179bb91
6
dist/setup/index.js
vendored
6
dist/setup/index.js
vendored
@ -102784,7 +102784,7 @@ class DragonwellDistribution extends base_installer_1.JavaBase {
|
||||
return fetchedDragonwellJson;
|
||||
}
|
||||
catch (err) {
|
||||
core.debug(`Fetching from the primary link: ${primaryUrl} ended with the error: ${err.message}`);
|
||||
core.debug(`Fetching from the primary link: ${primaryUrl} ended up with the error: ${err.message}`);
|
||||
return null;
|
||||
}
|
||||
});
|
||||
@ -102803,12 +102803,12 @@ class DragonwellDistribution extends base_installer_1.JavaBase {
|
||||
accept: 'application/vnd.github.VERSION.raw'
|
||||
};
|
||||
try {
|
||||
core.debug(`Trying to fetch available versions from the backup url: ${backupUrl}`);
|
||||
core.debug(`Trying to fetch available versions info from the backup url: ${backupUrl}`);
|
||||
const fetchedDragonwellVersions = (yield this.http.getJson(backupUrl, headers)).result;
|
||||
return fetchedDragonwellVersions;
|
||||
}
|
||||
catch (err) {
|
||||
core.debug(`Fetching from the backup url: ${backupUrl} ended with the error: ${err.message}`);
|
||||
core.debug(`Fetching from the backup url: ${backupUrl} ended up with the error: ${err.message}`);
|
||||
return null;
|
||||
}
|
||||
});
|
||||
|
@ -208,7 +208,7 @@ export class DragonwellDistribution extends JavaBase {
|
||||
return fetchedDragonwellJson;
|
||||
} catch (err) {
|
||||
core.debug(
|
||||
`Fetching from the primary link: ${primaryUrl} ended with the error: ${err.message}`
|
||||
`Fetching from the primary link: ${primaryUrl} ended up with the error: ${err.message}`
|
||||
);
|
||||
return null;
|
||||
}
|
||||
@ -231,7 +231,7 @@ export class DragonwellDistribution extends JavaBase {
|
||||
|
||||
try {
|
||||
core.debug(
|
||||
`Trying to fetch available versions from the backup url: ${backupUrl}`
|
||||
`Trying to fetch available versions info from the backup url: ${backupUrl}`
|
||||
);
|
||||
const fetchedDragonwellVersions = (
|
||||
await this.http.getJson<IDragonwellAllVersions>(backupUrl, headers)
|
||||
@ -239,7 +239,7 @@ export class DragonwellDistribution extends JavaBase {
|
||||
return fetchedDragonwellVersions;
|
||||
} catch (err) {
|
||||
core.debug(
|
||||
`Fetching from the backup url: ${backupUrl} ended with the error: ${err.message}`
|
||||
`Fetching from the backup url: ${backupUrl} ended up with the error: ${err.message}`
|
||||
);
|
||||
return null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user