aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/erroneous/nonexistentWorkingDir/project.qbs
blob: db0b0d60791f4770136cba58917d6ee1e89db089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import qbs

Application {
    name: "kaputt"
    Transformer {
        Artifact {
            fileName: "Stulle"
            fileTags: ["nutritious"]
        }
        prepare: {
            var cmd = new Command("ls");
            cmd.workingDirectory = "/does/not/exist";
            cmd.silent = true;
            return [cmd];
        }
    }
}