Ignore:
Timestamp:
Mar 26, 2013, 4:23:42 PM (12 years ago)
Author:
s10k
Message:

fixed typo which was making @COMMAND to fail

File:
1 edited

Legend:

Unmodified
Added
Removed
  • xmlTools/trunk/posUpdate/XmlPatch.cs

    r745 r746  
    296296                    else
    297297                    {
    298                         command = command.Insert(command.Length-1," -filename:" + this.forceFiles); // -1 to be inside quotes
     298                        command = command.Insert(command.Length," -filename:" + this.forceFiles);
    299299                    }
    300300
     
    315315                if (this.globalNoBackups && !Util.ContainsIgnoreCase(command,"nobackups")) // add noBackup flag if provided as global parameter
    316316                {
    317                     command = command.Insert(command.Length - 1, " -nobackups"); // -1 to be inside quotes
     317                    command = command.Insert(command.Length, " -nobackups");
    318318                }
    319319
Note: See TracChangeset for help on using the changeset viewer.