We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9543c07 commit bb7b335Copy full SHA for bb7b335
target.py
@@ -117,8 +117,11 @@ def __init__(self, filename):
117
118
def inner_invoke(self, args):
119
import pixie.vm.rt as rt
120
-
121
- rt.compile_file(rt.wrap(self._filename))
+ try:
+ rt.compile_file(rt.wrap(self._filename))
122
+ except WrappedException as ex:
123
+ print "Error: ", ex._ex.__repr__()
124
+ os._exit(1)
125
126
127
class IsPreloadFlag(object):
0 commit comments