Skip to content

Commit

Permalink
Regenerate dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
szymmis committed Aug 2, 2023
1 parent 2ff3baf commit f53ea33
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions dist/cache-save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59376,7 +59376,7 @@ function getCacheDirectory() {
case "win32":
return external_path_default().join(process.env.APPDATA, "swmansion/Scarb/config");
default:
throw new Error(`Caching not available for ${platform} platform`);
throw new Error(`Caching not available for ${platform} platform.`);
}
}

Expand All @@ -59386,7 +59386,7 @@ async function getCacheKey() {

if (!fileHash) {
throw new Error(
"Unable to hash Scarb.toml file, cannot cache dependencies.",
"Unable to hash Scarb.toml file, cannot cache dependencies."
);
}

Expand All @@ -59397,7 +59397,7 @@ async function getScarbManifestPath() {
const { stdout, exitCode } = await exec.getExecOutput("scarb manifest-path");

if (exitCode > 0) {
throw new Error("Unable to resolve Scarb.toml path");
throw new Error("Unable to resolve Scarb.toml path.");
}

return stdout.trim();
Expand All @@ -59417,7 +59417,7 @@ async function saveCache() {
if (primaryKey !== matchedKey) {
await cache.saveCache([getCacheDirectory()], primaryKey);
} else {
core.info(`Cache hit occurred, not saving cache`);
core.info(`Cache hit occurred, not saving cache.`);
}
} catch (e) {
core.error(e);
Expand Down
2 changes: 1 addition & 1 deletion dist/cache-save/index.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60495,7 +60495,7 @@ function getCacheDirectory() {
case "win32":
return external_path_default().join(process.env.APPDATA, "swmansion/Scarb/config");
default:
throw new Error(`Caching not available for ${platform} platform`);
throw new Error(`Caching not available for ${platform} platform.`);
}
}

Expand All @@ -60505,7 +60505,7 @@ async function getCacheKey() {

if (!fileHash) {
throw new Error(
"Unable to hash Scarb.toml file, cannot cache dependencies.",
"Unable to hash Scarb.toml file, cannot cache dependencies."
);
}

Expand All @@ -60516,7 +60516,7 @@ async function getScarbManifestPath() {
const { stdout, exitCode } = await exec.getExecOutput("scarb manifest-path");

if (exitCode > 0) {
throw new Error("Unable to resolve Scarb.toml path");
throw new Error("Unable to resolve Scarb.toml path.");
}

return stdout.trim();
Expand All @@ -60542,7 +60542,7 @@ async function restoreCache() {

const matchedKey = await cache.restoreCache([cacheDir], primaryKey);
if (!matchedKey) {
core.info(`Cache entry not found`);
core.info(`Cache entry not found.`);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/setup/index.js.map

Large diffs are not rendered by default.

0 comments on commit f53ea33

Please sign in to comment.