aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/travis/print_logs.sh
diff options
context:
space:
mode:
authorVojta Jina2013-12-11 09:56:06 -0800
committerVojta Jina2013-12-11 10:12:18 -0800
commit8864e54f1f94883f3e22d7ce7ed87a699467a217 (patch)
tree256453f7e9ac9c8460be80d751af14b62e3f79f7 /scripts/travis/print_logs.sh
parentdc4df931778a374f1fb3c8af7545733c09b9c098 (diff)
downloadangular.js-8864e54f1f94883f3e22d7ce7ed87a699467a217.tar.bz2
chore(scripts): refactor travis scripts
Refactoring so that it's easier to use both SL/BS just depending on a global switch.
Diffstat (limited to 'scripts/travis/print_logs.sh')
-rwxr-xr-xscripts/travis/print_logs.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/travis/print_logs.sh b/scripts/travis/print_logs.sh
new file mode 100755
index 00000000..ec612ca1
--- /dev/null
+++ b/scripts/travis/print_logs.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+LOG_FILES=$LOGS_DIR/*
+
+for FILE in $LOG_FILES; do
+ echo -e "\n\n\n"
+ echo "================================================================================"
+ echo " $FILE"
+ echo "================================================================================"
+ cat $FILE
+done