From afff79a5a23aff38410e2fdbf7fc65ef3d4497e3 Mon Sep 17 00:00:00 2001
From: eric sciple <ericsciple@users.noreply.github.com>
Date: Mon, 9 Dec 2019 19:16:06 -0500
Subject: [PATCH] .

---
 dist/index.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dist/index.js b/dist/index.js
index c2cef21..e17ca9e 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -8115,7 +8115,9 @@ function downloadRepository(accessToken, owner, repo, ref, repositoryPath) {
         assert.ok(runnerTemp, 'RUNNER_TEMP not defined');
         const archiveFile = path.join(runnerTemp, 'checkout.tar.gz');
         yield fs.promises.writeFile(archiveFile, response.data);
-        yield exec.exec(`tar -xzf "${archiveFile}"`, [], { cwd: repositoryPath });
+        yield exec.exec(`tar -xzf "${archiveFile}"`, [], {
+            cwd: repositoryPath
+        });
     });
 }
 exports.downloadRepository = downloadRepository;