I'm writing a Rule where one of the commands is using cat like this: cat file1 file2 file3 > finalfile
My qbs code does this:
var cmd = new Command("cat", ["file1","file2","file3",">","finalfile"]);
The command line being used wraps > like '>', which doesn't work:
cat file1 file2 file3 '>' finalfile
Is this a qbs bug? Any way to work around this?
Cheers,
Ola
_______________________________________________ Qbs mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/qbs
