Skip to content

Commit

Permalink
normalize path
Browse files Browse the repository at this point in the history
add gitversion branch policies
  • Loading branch information
sandorfr committed Jul 12, 2016
1 parent baea299 commit a9b0b0d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
mode: ContinuousDeployment
branches:
dev(elop)?(ment)?$:
tag: alpha
features?[/-]:
tag: alpha.{BranchName}
mode: ContinuousDelivery
(pull|pull\-requests|pr)[/-]:
mode: ContinuousDelivery
support[/-]:
mode: ContinuousDelivery
2 changes: 1 addition & 1 deletion src/GeekLearning.Storage/Internal/PrivateFileReference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class PrivateFileReference : IPrivateFileReference
{
public PrivateFileReference(string path)
{
this.Path = path;
this.Path = path.Replace("\\", "/").TrimStart('/');
}
public string Path { get; }
}
Expand Down

0 comments on commit a9b0b0d

Please sign in to comment.