Skip to content

Commit 6970900

Browse files
committed
SCRIPTS: Allow make errors to propagate. Closes #461
1 parent 1caf8dd commit 6970900

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/lambdanative

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,16 +115,16 @@ cat > ./Makefile << _EOF
115115
# Automatically generated. Do not edit
116116
117117
all:
118-
@cd $LAMBDANATIVE; SYS_PATH=$here make; cd $here
118+
@cd $LAMBDANATIVE && SYS_PATH=$here make && cd $here
119119
120120
clean:
121-
@cd $LAMBDANATIVE; SYS_PATH=$here make clean; cd $here
121+
@cd $LAMBDANATIVE && SYS_PATH=$here make clean && cd $here
122122
123123
scrub:
124-
@cd $LAMBDANATIVE; SYS_PATH=$here make scrub; cd $here
124+
@cd $LAMBDANATIVE && SYS_PATH=$here make scrub && cd $here
125125
126126
install:
127-
@cd $LAMBDANATIVE; SYS_PATH=$here make install; cd $here
127+
@cd $LAMBDANATIVE && SYS_PATH=$here make install && cd $here
128128
129129
#eof
130130
_EOF

0 commit comments

Comments
 (0)