From b93179bb9101acf82cc9d42b8af320da3395c0bf Mon Sep 17 00:00:00 2001 From: Ivan Zosimov Date: Tue, 19 Sep 2023 11:47:19 +0200 Subject: [PATCH] chore: update wordings --- dist/setup/index.js | 6 +++--- src/distributions/dragonwell/installer.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index 959b4a0..a0dba7f 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -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; } }); diff --git a/src/distributions/dragonwell/installer.ts b/src/distributions/dragonwell/installer.ts index 79914c4..5bb99bf 100644 --- a/src/distributions/dragonwell/installer.ts +++ b/src/distributions/dragonwell/installer.ts @@ -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(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; }