aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/extensionsystem/copytransformer.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/extensionsystem/copytransformer.qbs')
-rw-r--r--tests/auto/extensionsystem/copytransformer.qbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/extensionsystem/copytransformer.qbs b/tests/auto/extensionsystem/copytransformer.qbs
index fc0d7856af..c306748a8c 100644
--- a/tests/auto/extensionsystem/copytransformer.qbs
+++ b/tests/auto/extensionsystem/copytransformer.qbs
@@ -13,10 +13,10 @@ Transformer {
for (var index in inputs[tag]) {
var artifact = inputs[tag][index];
var cmd = new JavaScriptCommand();
- cmd.sourceFile = artifact.fileName;
- cmd.description = "Copying '" + cmd.sourceFile + "' to '" + output.fileName + "/'.";
+ cmd.sourceFile = artifact.filePath;
+ cmd.description = "Copying '" + cmd.sourceFile + "' to '" + output.filePath + "/'.";
cmd.highlight = "codegen";
- cmd.targetFilePath = output.fileName + '/' + FileInfo.fileName(cmd.sourceFile);
+ cmd.targetFilePath = output.filePath + '/' + FileInfo.fileName(cmd.sourceFile);
cmd.sourceCode = function() { File.copy(sourceFile, targetFilePath); }
commands.push(cmd);
}