Skip to content

Commit

Permalink
Fixes issue #30
Browse files Browse the repository at this point in the history
  • Loading branch information
tjscience committed Jun 7, 2017
1 parent 2877d82 commit 568a482
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RoboSharp/CopyOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ internal string Parse()
options.Append(string.Format(COPY_FLAGS, cleanedCopyFlags));
Debugger.Instance.DebugMessage(string.Format("Parsing CopyOptions progress ({0}).", options.ToString()));
}
if (!cleanedDirectoryCopyFlags.IsNullOrWhiteSpace())
if (!cleanedDirectoryCopyFlags.IsNullOrWhiteSpace() && version >= 5.1260026)
{
options.Append(string.Format(DIRECTORY_COPY_FLAGS, cleanedDirectoryCopyFlags));
Debugger.Instance.DebugMessage(string.Format("Parsing CopyOptions progress ({0}).", options.ToString()));
Expand Down
2 changes: 1 addition & 1 deletion RoboSharp/RoboSharp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>RoboSharp</id>
<version>1.0.26</version>
<version>1.0.27</version>
<title>RoboSharp</title>
<authors>Terry Phillips</authors>
<owners>Terry Phillips</owners>
Expand Down

0 comments on commit 568a482

Please sign in to comment.