Skip to content

Commit

Permalink
travis: Small output fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Mar 5, 2017
1 parent c2afa20 commit 3600c64
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis/build.sh
Expand Up @@ -214,7 +214,7 @@ function build() {
git pull
git add -A .
git commit -a -m "Travis build #$TRAVIS_BUILD_NUMBER of $GIT_REVISION for PLATFORM=$PLATFORM TARGET=$TARGET"
git diff origin/master --stat
git diff origin/master --stat=1000
#git push --quiet origin master > /dev/null 2>&1
)
echo "============================================="
Expand Down Expand Up @@ -281,6 +281,7 @@ else
echo "---------------------------------------------"
export PREBUILT_DIR="/tmp/HDMI2USB-firmware-prebuilt"
git clone https://$GH_TOKEN@github.com/$PREBUILT_REPO_OWNER/${PREBUILT_REPO}.git $PREBUILT_DIR
echo "============================================="
fi


Expand All @@ -304,6 +305,9 @@ for PLATFORM in $PLATFORMS; do
CPUS="$CPU"
fi
fi
echo ""
echo ""
echo ""
echo "Running with TARGETS='$TARGETS'"
for TARGET in $TARGETS; do
for CPU in $CPUS; do
Expand All @@ -326,7 +330,7 @@ if [ ! -z "$PREBUILT_DIR" ]; then
echo "---------------------------------------------"
(
cd $PREBUILT_DIR
git diff origin/master --stat
git diff origin/master --stat=1000
#git push --quiet origin master > /dev/null 2>&1
)
echo "============================================="
Expand Down

0 comments on commit 3600c64

Please sign in to comment.