Skip to content

Commit

Permalink
update build script to stop on error
Browse files Browse the repository at this point in the history
  • Loading branch information
arfrie22 committed Jul 19, 2024
1 parent fc05d61 commit 4f40c14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
submodules: recursive

- name: Build Script
run: sudo ./build.sh demo
run: sudo ./build.sh -s demo

build-docker:
name: Build Docker
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

while getopts ":s" opt; do
case $opt in
Expand Down

0 comments on commit 4f40c14

Please sign in to comment.