Closed roblabla closed 5 years ago
Merging #6 into master will increase coverage by
0.03%
. The diff coverage is100%
.
@@ Coverage Diff @@
## master #6 +/- ##
==========================================
+ Coverage 99.21% 99.24% +0.03%
==========================================
Files 4 4
Lines 380 396 +16
==========================================
+ Hits 377 393 +16
Misses 3 3
Impacted Files | Coverage Δ | |
---|---|---|
src/lib.rs | 75% <ø> (ø) |
:arrow_up: |
src/lib_test.rs | 100% <100%> (ø) |
:arrow_up: |
src/converter_test.rs | 100% <100%> (ø) |
:arrow_up: |
src/converter.rs | 98.64% <100%> (+0.11%) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 7628971...3480072. Read the comment docs.
example was fairly outdated (it panics on master I believe?), that's fixed. All tests were fixed (cargo test passes), and bench is now fixed.
Made a separate issue to track cp with multiple files, #7
Alright, should be good to go!
Got another problem. My rule is:
cp linker-scripts/bootstrap.ld link.T
This gets turned into an xcopy
instead of a copy
because of the -
in the middle of the path, which ends up matching the regex.
I'm not 100% sure how to deal with this. I think the regex should be (^|\s)-[^ ]*[rR]
?
i'll merge this one and do some more changes/tests. then i'll add that custom convert hint i talked about and release a new version
Initial fix for non-recursive cp.
This doesn't work for multiple file copies yet though. For this, we'd need some way to generate a for loop with the arguments. E.G.
cp test1 test2 test3
should generatefor %I in (test1 test2) do copy %I test3
. Two things necessary for this:\b[^-]+
will do?