From d872365864101a08094ea33c0ca19c7c45aa6e32 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Thu, 31 Oct 2019 21:32:07 +0100 Subject: [PATCH] Remove cache checksum debug - close #24 --- src/restore.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/restore.ts b/src/restore.ts index f93ef51..66a45aa 100644 --- a/src/restore.ts +++ b/src/restore.ts @@ -94,13 +94,6 @@ async function run() { core.info( `Cache restored from key:${cacheEntry && cacheEntry.cacheKey}` ); - - try { - core.info("Cache Checksum:"); - await exec(`md5sum`, [`${archivePath}`]); - } catch (error) { - core.debug(`Failed to checkum with ${error}`); - } } catch (error) { core.warning(error.message); utils.setCacheHitOutput(false);