From 04e26d1083b32bf961d7e5feeb8735122e71e9f0 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Tue, 20 Oct 2020 18:26:30 +0900 Subject: [PATCH] refactor: print log --- src/git-utils.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/git-utils.ts b/src/git-utils.ts index c6c1f12..39131c1 100644 --- a/src/git-utils.ts +++ b/src/git-utils.ts @@ -24,6 +24,9 @@ export async function deleteExcludedAssets(destDir: string, excludeAssets: strin return paths; })(); const globber = await glob.create(excludedAssetPaths.join('\n')); + console.log(excludedAssetNames); + console.log(excludedAssetPaths); + console.log(globber); for await (const asset of globber.globGenerator()) { core.info(`[INFO] delete ${asset}`); rm('-rf', asset);