Skip to content
This repository has been archived by the owner on Jul 1, 2018. It is now read-only.

Commit

Permalink
Make build errors fatal again.
Browse files Browse the repository at this point in the history
  • Loading branch information
zentner-kyle authored and ArcaneNibble committed Aug 29, 2014
1 parent cd27b2b commit 9b32732
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,13 @@
from __future__ import print_function
import traceback

def run_dir(ctx, name):
try:
ctx.recurse(name, mandatory=False)
except:
print('Exception in build system in subdirectory ', name, ':')
traceback.print_exc()


def recurse(ctx, dirs=None):
if dirs is None:
dirs = ['eda', 'controller', 'smartsensor_fw', 'grizzly_firmware',
'network', 'vm/angelic', 'vm/lua']
for d in dirs:
run_dir(ctx, d)
ctx.recurse(d, mandatory=False)


def options(ctx):
Expand Down

0 comments on commit 9b32732

Please sign in to comment.