mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
bug 212596: JUnit failures in cdt.managedbuilder.test.suite
Added quotes to accommodate names with spaces for diff command
This commit is contained in:
parent
29f917fa8f
commit
3769377fb6
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ public class DiffUtil {
|
|||
|
||||
private static String createCommand(String location1, String location2){
|
||||
StringBuffer buf = new StringBuffer();
|
||||
buf.append(DIFF_CMD).append(" ").append(location1).append(" ").append(location2);
|
||||
buf.append(DIFF_CMD).append(" '").append(location1).append("' '").append(location2).append("'");
|
||||
return buf.toString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue