Skip to content

Commit

Permalink
Update match pattern verbiage (#4334)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsciple authored May 17, 2017
1 parent b48bce4 commit 69bbed7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"loc.friendlyName": "Copy Files",
"loc.helpMarkDown": "[More Information](https://go.microsoft.com/fwlink/?LinkID=708389)",
"loc.description": "Copy files from source folder to target folder using minimatch patterns (The minimatch patterns will only match file paths, not folder paths)",
"loc.description": "Copy files from source folder to target folder using match patterns (The match patterns will only match file paths, not folder paths)",
"loc.instanceNameFormat": "Copy Files to: $(TargetFolder)",
"loc.releaseNotes": "Match pattern consistency.",
"loc.group.displayName.advanced": "Advanced",
"loc.input.label.SourceFolder": "Source Folder",
"loc.input.help.SourceFolder": "The source folder that the copy pattern(s) will be run from. Empty is the root of the repo. Use [variables](https://go.microsoft.com/fwlink/?LinkID=550988) if files are not in the repo. Example: $(agent.builddirectory)",
"loc.input.label.Contents": "Contents",
"loc.input.help.Contents": "File paths to include as part of the copy. Supports multiple lines of minimatch patterns. [More Information](https://go.microsoft.com/fwlink/?LinkID=708389)",
"loc.input.help.Contents": "File paths to include as part of the copy. Supports multiple lines of match patterns. [More Information](https://go.microsoft.com/fwlink/?LinkID=708389)",
"loc.input.label.TargetFolder": "Target Folder",
"loc.input.help.TargetFolder": "Target folder or UNC path files will copy to. You can use [variables](http://go.microsoft.com/fwlink/?LinkID=550988). Example: $(build.artifactstagingdirectory)",
"loc.input.label.CleanTargetFolder": "Clean Target Folder",
Expand Down
8 changes: 4 additions & 4 deletions Tasks/CopyFiles/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "5BFB729A-A7C8-4A78-A7C3-8D717BB7C13C",
"name": "CopyFiles",
"friendlyName": "Copy Files",
"description": "Copy files from source folder to target folder using minimatch patterns (The minimatch patterns will only match file paths, not folder paths)",
"description": "Copy files from source folder to target folder using match patterns (The match patterns will only match file paths, not folder paths)",
"helpMarkDown": "[More Information](https://go.microsoft.com/fwlink/?LinkID=708389)",
"category": "Utility",
"visibility": [
Expand All @@ -15,8 +15,8 @@
"author": "Microsoft Corporation",
"version": {
"Major": 2,
"Minor": 113,
"Patch": 1
"Minor": 117,
"Patch": 0
},
"releaseNotes": "Match pattern consistency.",
"demands": [],
Expand All @@ -43,7 +43,7 @@
"label": "Contents",
"defaultValue": "**",
"required": true,
"helpMarkDown": "File paths to include as part of the copy. Supports multiple lines of minimatch patterns. [More Information](https://go.microsoft.com/fwlink/?LinkID=708389)"
"helpMarkDown": "File paths to include as part of the copy. Supports multiple lines of match patterns. [More Information](https://go.microsoft.com/fwlink/?LinkID=708389)"
},
{
"name": "TargetFolder",
Expand Down
4 changes: 2 additions & 2 deletions Tasks/CopyFiles/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"author": "Microsoft Corporation",
"version": {
"Major": 2,
"Minor": 113,
"Patch": 1
"Minor": 117,
"Patch": 0
},
"releaseNotes": "ms-resource:loc.releaseNotes",
"demands": [],
Expand Down

0 comments on commit 69bbed7

Please sign in to comment.