mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-06-21 07:43:56 +08:00
Added proper support for multiple arguments
This commit is contained in:
Vendored
+1
-1
@@ -57,7 +57,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||
exports.run = void 0;
|
||||
const exec_1 = __nccwpck_require__(514);
|
||||
const run = (cmd, { cwd }) => __awaiter(void 0, void 0, void 0, function* () {
|
||||
yield (0, exec_1.exec)('yarn', [cmd], { cwd });
|
||||
yield (0, exec_1.exec)('yarn', cmd.split(' '), { cwd });
|
||||
});
|
||||
exports.run = run;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user