Fix install command (#2448)

This commit is contained in:
Bruce Berrios 2022-02-08 17:52:54 -05:00 committed by GitHub
parent c8af14baab
commit 586ae50b0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,2 +1,4 @@
npm install & (cd ./frontend && npm install) & (cd ./backend && npm install)
wait
npm install &
cd ./frontend && npm install &
cd ./backend && npm install &
wait