Skip to content

Commit 762452b

Browse files
authored
Palmr: fix #7556 (#7558)
1 parent 31cd3e3 commit 762452b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ct/palmr.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ function update_script() {
4242
cd /opt/palmr/apps/server
4343
mv /opt/palmr.env /opt/palmr/apps/server/.env
4444
$STD pnpm install
45-
$STD pnpm dlx prisma generate
46-
$STD pnpm dlx prisma migrate deploy
47-
$STD pnpm dlx prisma db push
45+
$STD npx prisma generate
46+
$STD npx prisma migrate deploy
47+
$STD npx prisma db push
4848
$STD pnpm build
4949

5050
cd /opt/palmr/apps/web

install/palmr-install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ sed -e 's/_ENCRYPTION=true/_ENCRYPTION=false/' \
3232
# CUSTOM_PATH=<path-to-your-bind-mount>" \
3333
.env.example >./.env
3434
$STD pnpm install
35-
$STD pnpm dlx prisma generate
36-
$STD pnpm dlx prisma migrate deploy
37-
$STD pnpm dlx prisma db push
35+
$STD npx prisma generate
36+
$STD npx prisma migrate deploy
37+
$STD npx prisma db push
3838
$STD pnpm db:seed
3939
$STD pnpm build
4040
msg_ok "Configured palmr backend"

0 commit comments

Comments
 (0)