mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
3eb7e97677
Signed-off-by: Nathan Colosimo <110621881+NathanColosimo@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
21 lines
394 B
JavaScript
21 lines
394 B
JavaScript
#!/usr/bin/env node
|
|
|
|
console.error(`The workflow-postgres-setup command has moved.
|
|
|
|
Use one of these commands instead:
|
|
|
|
# npm
|
|
npx --package=@workflow/world-postgres bootstrap
|
|
|
|
# pnpm
|
|
pnpm dlx --package @workflow/world-postgres bootstrap
|
|
|
|
# Yarn
|
|
yarn dlx --package @workflow/world-postgres bootstrap
|
|
|
|
# Bun
|
|
bunx --package @workflow/world-postgres bootstrap
|
|
`);
|
|
|
|
process.exit(1);
|