-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Currently there is support for wildcards, but this does not seem to support recursion
(https://github.com/Augurk/Augurk.CommandLine/blob/master/src/Augurk.CommandLine/Commands/PublishCommand.cs#L220)
suggestion: use the minimatch pattern to support recursion?
workaround: wrap the Augurk.exe command in some powershell and implement in VSTS task:
$children = Get-ChildItem "$(featureFilesDirectory)" -File -Filter "*.feature" -Recurse | select -ExpandProperty FullName
$csFeatureFiles = $children -join ","
&"$(augurkLocation)" publish --url "$(url)" --productName "$(productName)" --productDesc "$(productDesc)" --groupName "$(groupName)" --language "$(language)" --featureFiles $csFeatureFiles --cleargroup --branchName "$(branchName)" --embedMetadata
Metadata
Assignees
Labels
No labels