From a46c66dae609edb5f21e2de66eeacb67ddfb381c Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Fri, 30 Jun 2023 23:54:39 +0200
Subject: [PATCH] Fix typo
---
packed/index.js | 2 +-
src/main.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/packed/index.js b/packed/index.js
index 1cb78e2..e6fde88 100644
--- a/packed/index.js
+++ b/packed/index.js
@@ -424,7 +424,7 @@ function run() {
case 1:
found_cache_key = _a.sent();
if (found_cache_key) {
- core.info("SDL found in the chache: key = ".concat(found_cache_key));
+ core.info("SDL found in the cache: key = ".concat(found_cache_key));
}
else {
core.info("No match found in cache. Building SDL from scratch.");
diff --git a/src/main.ts b/src/main.ts
index 6291494..515c906 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -354,7 +354,7 @@ async function run() {
CACHE_KEY
);
if (found_cache_key) {
- core.info(`SDL found in the chache: key = ${found_cache_key}`);
+ core.info(`SDL found in the cache: key = ${found_cache_key}`);
} else {
core.info("No match found in cache. Building SDL from scratch.");
}