mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-10 20:25:41 +00:00
10 lines
287 B
JavaScript
10 lines
287 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { applyRequestedEntitlementProfile } from './entitlement-bootstrap.mjs';
|
|
|
|
try {
|
|
await applyRequestedEntitlementProfile();
|
|
} catch (error) {
|
|
console.error('[integration] Failed to apply entitlement profile:', error?.message || error);
|
|
process.exit(1);
|
|
}
|