Allow specifying multiple $Files using string array#32
Allow specifying multiple $Files using string array#32am11 wants to merge 2 commits intodsccommunity:devfrom
Conversation
62314b2 to
826b91e
Compare
|
CI is failing due to a certificate error:
|
|
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
|
Hi @am11, the error seems to be coming from the Thanks |
Codecov Report
@@ Coverage Diff @@
## dev #32 +/- ##
=======================================
Coverage 22.95% 22.95%
=======================================
Files 1 1
Lines 61 61
=======================================
Hits 14 14
Misses 47 47
Continue to review full report at Codecov.
|
|
Retriggering the build did the trick, yay! 🚀 |
|
@gaelcolas, just a note. Not all files in the repo follow the eol rule written in .gitattributes, so after the fresh clone, we get the modified files even when our global autocrlf is |
|
Thanks for the heads up. I'll probably need to first fix that in another PR and then ask you to rebase. But I'll have to have a proper look, in a few days. |
This enables array input for
Filesparameter:xRobocopy CopyByUsingFilesFilter { Source = 'C:\temp\source' Destination = 'C:\temp\destination' Files = @('test1.txt', 'test2.txt') }while keeping the (currently supported) single input
Files = 'test.txt'and glob patternFiles = '*.sql'intact.This change is