Skip to content

Commit

Permalink
[travis] Fix YARN container log upload to s3 on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
rmetzger committed Apr 1, 2015
1 parent d2e2d79 commit 50ffff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/travis_mvn_watchdog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ print_stacktraces () {
put_yarn_logs_to_artifacts() {
# Make sure to be in project root
cd $HERE/../
for file in `find target/flink-yarn-tests* -type f -name '*.log'`; do
for file in `find ./flink-yarn-tests/target/flink-yarn-tests* -type f -name '*.log'`; do
TARGET_FILE=`echo "$file" | grep -Eo "container_[0-9_]+/(.*).log"`
TARGET_DIR=`dirname "$TARGET_FILE"`
mkdir -p "$ARTIFACTS_DIR/yarn-tests/$TARGET_DIR"
Expand Down

0 comments on commit 50ffff0

Please sign in to comment.