Different command to run shell script
parent
c99854b201
commit
5a00d7bf75
|
|
@ -1217,8 +1217,8 @@ const exec_1 = __webpack_require__(71514);
|
|||
class MacBuilder {
|
||||
static run(actionFolder, workspace, buildParameters, silent = false) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const command = `source`;
|
||||
yield exec_1.exec(command, [`${actionFolder}/platforms/mac/entrypoint.sh`], { silent });
|
||||
const command = `bash`;
|
||||
yield exec_1.exec(command, [`-x`, `${actionFolder}/platforms/mac/entrypoint.sh`], { silent });
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -3,8 +3,8 @@ import { BuildParameters } from '.';
|
|||
|
||||
class MacBuilder {
|
||||
public static async run(actionFolder, workspace, buildParameters: BuildParameters, silent = false) {
|
||||
const command = `source`;
|
||||
await exec(command, [`${actionFolder}/platforms/mac/entrypoint.sh`], { silent });
|
||||
const command = `bash`;
|
||||
await exec(command, [`-x`, `${actionFolder}/platforms/mac/entrypoint.sh`], { silent });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue