d18ada4ee7
Docker Publish / docker (web, apps/web/Dockerfile, web) (push) Failing after 0s
Docker Publish / docker (api, apps/api/Dockerfile, api) (push) Failing after 1s
Publish Extension / detect-version (push) Has been skipped
Publish Extension / submit (push) Has been cancelled
6 lines
197 B
JavaScript
Executable File
6 lines
197 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
import('../index.mjs').catch((e) => {
|
|
process.stderr.write(JSON.stringify({ ok: false, code: 'UNKNOWN_ERROR', message: String(e?.message ?? e) }) + '\n')
|
|
process.exit(2)
|
|
})
|