Skip to content

Commit 568a482

Browse files
committed
Fixes issue #30
1 parent 2877d82 commit 568a482

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

RoboSharp/CopyOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ internal string Parse()
295295
options.Append(string.Format(COPY_FLAGS, cleanedCopyFlags));
296296
Debugger.Instance.DebugMessage(string.Format("Parsing CopyOptions progress ({0}).", options.ToString()));
297297
}
298-
if (!cleanedDirectoryCopyFlags.IsNullOrWhiteSpace())
298+
if (!cleanedDirectoryCopyFlags.IsNullOrWhiteSpace() && version >= 5.1260026)
299299
{
300300
options.Append(string.Format(DIRECTORY_COPY_FLAGS, cleanedDirectoryCopyFlags));
301301
Debugger.Instance.DebugMessage(string.Format("Parsing CopyOptions progress ({0}).", options.ToString()));

RoboSharp/RoboSharp.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>RoboSharp</id>
5-
<version>1.0.26</version>
5+
<version>1.0.27</version>
66
<title>RoboSharp</title>
77
<authors>Terry Phillips</authors>
88
<owners>Terry Phillips</owners>

0 commit comments

Comments
 (0)