6 lines
No EOL
415 B
Bash
Executable file
6 lines
No EOL
415 B
Bash
Executable file
#!/bin/sh
|
|
# This exists purely to set CHECKPOINT_DISABLE=1 and try to prevent the data collection done by prisma (and potentially improve performance by doing so ;) )
|
|
# See https://www.prisma.io/docs/orm/tools/prisma-cli#usage-data-1 for details.
|
|
export CHECKPOINT_DISABLE=1
|
|
# TODO: execute node_modules/prisma/build/index.js directly if the subdirectory problem can be solved.
|
|
exec npx --package=prisma prisma "$@" |