Changeset 746 for xmlTools/trunk
- Timestamp:
- Mar 26, 2013, 4:23:42 PM (12 years ago)
- Location:
- xmlTools/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
xmlTools/trunk/posUpdate/Program.cs
r745 r746 11 11 class Program 12 12 { 13 public static readonly string toolsVersion = "0.8 b";13 public static readonly string toolsVersion = "0.8c"; 14 14 private static appErrors lastError; 15 15 -
xmlTools/trunk/posUpdate/XmlPatch.cs
r745 r746 296 296 else 297 297 { 298 command = command.Insert(command.Length -1," -filename:" + this.forceFiles); // -1 to be inside quotes298 command = command.Insert(command.Length," -filename:" + this.forceFiles); 299 299 } 300 300 … … 315 315 if (this.globalNoBackups && !Util.ContainsIgnoreCase(command,"nobackups")) // add noBackup flag if provided as global parameter 316 316 { 317 command = command.Insert(command.Length - 1, " -nobackups"); // -1 to be inside quotes317 command = command.Insert(command.Length, " -nobackups"); 318 318 } 319 319
Note:
See TracChangeset
for help on using the changeset viewer.