Skip to content

Commit

Permalink
Merge pull request #429 from Microsoft/users/kasubram/rmwildcardfix
Browse files Browse the repository at this point in the history
Resolve the path containing wildcards in filePath task input
  • Loading branch information
TingluoHuang authored Jul 21, 2016
2 parents 0b2a9c1 + 6605a70 commit 0362b88
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Agent.Worker/Release/ReleaseJobExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ public string GetRootedPath(IExecutionContext context, string path)
}
catch (Exception ex)
{
Trace.Info($"Path resolved is a rooted path, but it is not a full qualified path: {path}");
Trace.Info($"Path resolved is a rooted path, but it is not fully qualified, return the path: {path}");
Trace.Error(ex);
return path;
}
}

Expand All @@ -69,8 +70,9 @@ public string GetRootedPath(IExecutionContext context, string path)
}
catch (Exception ex)
{
Trace.Info($"After prefix Artifact Path Root provide by JobExtension, the Path is a rooted path, but it is not a full qualified path: {path}");
Trace.Info($"After prefix Artifact Path Root provide by JobExtension. The Path is a rooted path, but it is not fully qualified, return the path: {path}");
Trace.Error(ex);
return path;
}
}
}
Expand Down

0 comments on commit 0362b88

Please sign in to comment.