From f6f20267895d42e75374e70c3cc51f191fd3c6d6 Mon Sep 17 00:00:00 2001 From: Carlos Guerrero Date: Tue, 25 Feb 2020 16:28:49 +0000 Subject: [PATCH] Fix format-check --- src/restore.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/restore.ts b/src/restore.ts index 1aeff90..f180c2b 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -61,9 +61,7 @@ async function run(): Promise { try { const cacheEntry = await cacheHttpClient.getCacheEntry(keys); if (!cacheEntry?.archiveLocation) { - core.info( - `Cache not found for input keys: ${keys.join(", ")}` - ); + core.info(`Cache not found for input keys: ${keys.join(", ")}`); return; }