Skip to content

Commit

Permalink
frontend: Fix shebang in build_shared.sh
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 forst error exit code

Signed-off-by: Dilyan Marinov <mdilyan@vmware.com>
  • Loading branch information
Dilyan Marinov committed Mar 14, 2023
1 parent 3a059dd commit 67c7256
Showing 1 changed file with 1 addition 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

0 comments on commit 67c7256

Please sign in to comment.