Skip to content

Support recursive directories #15

Description

@SamJongenelen

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)" --embed

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions