From 586ae50b0fd5c91556c80d7752cf06d8a678cb30 Mon Sep 17 00:00:00 2001 From: Bruce Berrios <58147810+Bruception@users.noreply.github.com> Date: Tue, 8 Feb 2022 17:52:54 -0500 Subject: [PATCH] Fix install command (#2448) --- bin/install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/install.sh b/bin/install.sh index b5ba2396a..2bbcb0986 100755 --- a/bin/install.sh +++ b/bin/install.sh @@ -1,2 +1,4 @@ -npm install & (cd ./frontend && npm install) & (cd ./backend && npm install) -wait \ No newline at end of file +npm install & +cd ./frontend && npm install & +cd ./backend && npm install & +wait