6 lines
415 B
Text
6 lines
415 B
Text
|
#!/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 "$@"
|