12 lines
301 B
TypeScript
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;
|