From dc8a6933d3a7f3bea1b252b9ed1995c141ca1c9c Mon Sep 17 00:00:00 2001 From: Monkey Juice Date: Mon, 20 Jul 2020 00:29:36 +0800 Subject: [PATCH] fix Cloning repo log error (#118) --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 73f9c96..e8fe012 100644 --- a/src/main.ts +++ b/src/main.ts @@ -48,7 +48,7 @@ async function run() { process.chdir(tmpdir); if (keepHistory && remoteBranchExists) { - core.info('🌀 Cloning ${repo}'); + core.info(`🌀 Cloning ${repo}`); await git.clone(remoteURL, targetBranch, '.'); } else { core.info(`✨ Initializing local git repo`);