Skip to content

Commit

Permalink
Latest Faabric and missing check in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Shillaker committed Dec 15, 2020
1 parent 43e6ab9 commit 162cb1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tasks/examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def build(ctx, clean=False, shared=False):
"cmake --build . --target {}".format(EXAMPLE_TARGET),
cwd=build_dir,
shell=True,
check=True,
)


Expand All @@ -62,4 +63,4 @@ def execute(ctx, shared=False):
if not exists(exe_path):
raise RuntimeError("Did not find {} as expected".format(exe_path))

run(exe_path, shell=True)
run(exe_path, shell=True, check=True)
2 changes: 1 addition & 1 deletion third-party/faabric

0 comments on commit 162cb1d

Please sign in to comment.