Skip to content

Commit

Permalink
Add compiled index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
stephendotcarter committed Apr 7, 2023
1 parent 9585d50 commit 5d9b9bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ const downloadMinikube = (version) => __awaiter(void 0, void 0, void 0, function
const binPath = (0, os_1.platform)() === 'darwin' ? '/Users/runner/bin' : '/home/runner/bin';
yield (0, io_1.mkdirP)(binPath);
yield (0, exec_1.exec)('chmod', ['+x', downloadPath]);
yield (0, io_1.mv)(downloadPath, (0, path_1.join)(binPath, 'minikube'));
yield (0, io_1.cp)(downloadPath, (0, path_1.join)(binPath, 'minikube'));
yield (0, io_1.rmRF)(downloadPath);
(0, core_1.addPath)(binPath);
});
exports.downloadMinikube = downloadMinikube;
Expand Down

0 comments on commit 5d9b9bf

Please sign in to comment.