eric sciple 5 years ago
parent
commit
afff79a5a2
1 changed files with 3 additions and 1 deletions
  1. 3 1
      dist/index.js

+ 3 - 1
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;