Changeset 1111 for s10k/XmlTools/xmlpatch.cpp
- Timestamp:
- Feb 16, 2019, 6:25:06 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
s10k/XmlTools/xmlpatch.cpp
r1073 r1111 374 374 command=GlobalVars::AppExecutable; 375 375 376 // Append files if forced to377 if(!this->forceTargetFilesWildcard.isEmpty()){378 command+=" --files '"+this->forceTargetFilesWildcard+"' ";379 }380 381 376 command+=" "+getPatchParameterValue(line,"Options"); 382 377 … … 392 387 command.replace("'","\""); //replace apostrophe by quotes, to avoid problems 393 388 command.replace("\"\"","'"); // this allow to use '' as ' ('' is transformed in "" and then in ') 389 390 // Append files if forced to 391 392 // This is added at the end so the apostrophe isn't done here (the path can contain it) 393 if(!this->forceTargetFilesWildcard.isEmpty()){ 394 command+=" --files \""+this->forceTargetFilesWildcard+"\" "; 395 } 394 396 395 397 executeCommandOperation(command);
Note:
See TracChangeset
for help on using the changeset viewer.