test
This commit is contained in:
parent
ae6f16e2ab
commit
0365c5fb42
1 changed files with 4 additions and 2 deletions
|
|
@ -51,8 +51,10 @@ class DataComposerJenkins extends DataComposer {
|
|||
]).then((ProcessResult result) => jsonStr = result.stdout);
|
||||
jenkinsMap = getMapFromJson(jsonStr)!;
|
||||
|
||||
await Process.run('printf', ['\$BuildData'])
|
||||
.then((processResult) => {print(processResult.stdout)});
|
||||
var shell = 'echo -e \$BuildData';
|
||||
await Process.run(shell, []).then((ProcessResult result) {
|
||||
print(result.stdout);
|
||||
});
|
||||
} else if (Platform.isWindows) {
|
||||
await Process.run('cmd', [
|
||||
'/C',
|
||||
|
|
|
|||
Loading…
Reference in a new issue