Skip to content

Commit

Permalink
fixed a bug introduced in last commit that prevented kcov from findin…
Browse files Browse the repository at this point in the history
…g any valid coverage files
  • Loading branch information
Robbepop committed Aug 13, 2017
1 parent f615432 commit 069293b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ after_success: |
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/{string_interner}-*[^\d]; do
for file in target/debug/string_interner-*[^\d]; do
mkdir -p "target/cov/$(basename $file)";
./kcov-build/usr/local/bin/kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file";
done &&
Expand Down

0 comments on commit 069293b

Please sign in to comment.