Skip to content

Commit 0e231b5

Browse files
committed
display build output
1 parent 0da28cc commit 0e231b5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ci/run_tests.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,19 @@ test $EXIT_CODE -eq 0
217217
# Build again, should update nothing
218218
"$fpm" build --verbose > build.log
219219
if [[ -n "$(grep Update build.log)" ]]; then
220+
221+
cat build.log;
222+
220223
echo "Some dependencies were updated that should not be";
221224
exit 1;
222225
fi
223226

224227
# Request update, should update oth
225228
"$fpm" update --clean --verbose > update.log
226229
if [[ -z "$(grep Update update.log)" ]]; then
230+
231+
cat update.log;
232+
227233
echo "No updated dependencies after 'fpm update --clean'";
228234
exit 1;
229235
fi

0 commit comments

Comments
 (0)