From 81d5ea586a86dec4f0829a98fcd9fcb4d311357e Mon Sep 17 00:00:00 2001 From: Shiham Abdul Rahman Date: Wed, 14 Dec 2022 00:22:52 +0500 Subject: [PATCH] no need for full path since i source profile and bashrc first --- buildfiles/start_services.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildfiles/start_services.sh b/buildfiles/start_services.sh index f168bce..e077776 100644 --- a/buildfiles/start_services.sh +++ b/buildfiles/start_services.sh @@ -2,10 +2,10 @@ source $HOME/.profile; source $HOME/.bashrc #Start frontend -cd /root/okiba-org-frontend; /root/.local/share/pnpm/pnpm run dev --host & +cd /root/okiba-org-frontend; pnpm run dev --host & #Start backend -cd /root/okiba-org-backend; /root/.local/share/pnpm/pnpm start & +cd /root/okiba-org-backend; pnpm start & # Wait for any process to exit wait -n