More debugging

This commit is contained in:
MeFisto94 2017-01-19 23:04:25 +01:00
parent 9375afa6b5
commit 14bfe1a649
2 changed files with 4 additions and 1 deletions

View File

@ -34,7 +34,7 @@
#include "BulletCollision/NarrowPhaseCollision/btManifoldPoint.h"
#include "com_jme3_bullet_collision_PhysicsCollisionEvent.h"
// Change to trigger build..
// Change to trigger build...
/*
* Class: com_jme3_bullet_collision_PhysicsCollisionEvent

View File

@ -1,7 +1,10 @@
#!/bin/bash
set -euo pipefail
echo " - Checking if natives changed in commit $TRAVIS_COMMIT.."
git status -v
NATIVE_CHANGES="$(git diff-tree --name-only "$TRAVIS_COMMIT" -- jme3-bullet-native/)"
git status -v
git log -n 2
if [ "$NATIVE_CHANGES" != "" ]; then
echo " - Configuring GIT user"
git config --global user.email "travis-ci"