Skip to content

Commit

Permalink
added error codes
Browse files Browse the repository at this point in the history
Signed-off-by: Nicholas Bucher <[email protected]>
  • Loading branch information
Charlesthebird committed Dec 18, 2024
1 parent c266bba commit d67d1c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
#############################

# Install dependencies.
yarn --cwd ./projects/ui
yarn --cwd ./projects/server
yarn --cwd ./projects/ui || exit 1
yarn --cwd ./projects/server || exit 1

# Build the UI.
yarn --cwd ./projects/ui build
yarn --cwd ./projects/ui build || exit 1

# Cleanup old server files if they exist.
rm -rf ./projects/server/public/dist || true
Expand Down

0 comments on commit d67d1c1

Please sign in to comment.