Skip to content

Commit

Permalink
frontend: Fix shebang in build_shared.sh (#1743)
Browse files Browse the repository at this point in the history
Change shebang in build_shared.sh to !/bin/bash -e

This points to the correct execution shell for build scripts and passes
the -e flag, which makes the script fail on the first error exit code

Signed-off-by: Dilyan Marinov <mdilyan@vmware.com>
  • Loading branch information
DeltaMichael authored and ivakoleva committed Mar 16, 2023
1 parent 7f91cb4 commit 5b750ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion projects/frontend/cicd/install_shared.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash -e
# Copyright 2023-2023 VMware, Inc.
# SPDX-License-Identifier: Apache-2.0

Expand Down
1 change: 1 addition & 0 deletions projects/frontend/data-pipelines/gui/.npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
legacy-peer-deps=true
verbose=true
1 change: 1 addition & 0 deletions projects/frontend/shared-components/gui/.npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
legacy-peer-deps=true
engine-strict=true
verbose=true

0 comments on commit 5b750ce

Please sign in to comment.