added full path to /root/.local/share/pnpm/pnpm

This commit is contained in:
Shihaam Abdul Rahman 2022-12-14 00:15:23 +05:00
parent fb065186d6
commit a361262b45
Signed by: shihaam
GPG Key ID: 3B007D22E5584980

View File

@ -1,10 +1,10 @@
#!/bin/bash
#Start frontend
cd /root/okiba-org-frontend; pnpm run dev &
cd /root/okiba-org-frontend; /root/.local/share/pnpm/pnpm run dev &
#Start backend
cd /root/okiba-org-backend; pnpm start &
cd /root/okiba-org-backend; /root/.local/share/pnpm/pnpm start &
# Wait for any process to exit
wait -n