unity-builder/src/model/mac-builder.ts

12 lines
301 B
TypeScript

import { execWithErrorCheck } from './exec-with-error-check';
class MacBuilder {
public static async run(actionFolder: string, silent: boolean = false) {
await execWithErrorCheck('bash', [`${actionFolder}/platforms/mac/entrypoint.sh`], {
silent,
});
}
}
export default MacBuilder;