Skip to content

Commit 6f252aa

Browse files
committedJun 8, 2020
Fix coverage: output binaries have moved in nightly
1 parent 8c6a76f commit 6f252aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎admin/coverage

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def cleanup():
1919
sh("rm -rf *.gcda *.gcno")
2020

2121
def run(which):
22-
exe = filter(lambda x: '.d' not in x, glob.glob('target/debug/' + which + '-*'))[0]
22+
exe = filter(lambda x: '.d' not in x, glob.glob('target/debug/deps/' + which + '-*'))[0]
2323
sh('./' + exe)
2424

2525
def cargo():

0 commit comments

Comments
 (0)
Please sign in to comment.