test
This commit is contained in:
parent
33975fef3b
commit
a7158ae324
1 changed files with 3 additions and 3 deletions
|
|
@ -52,9 +52,9 @@ class DataComposerJenkins extends DataComposer {
|
|||
jenkinsMap = getMapFromJson(jsonStr)!;
|
||||
|
||||
var shell = '\$BuildData';
|
||||
Process.run(shell, []).asStream().listen((result) {
|
||||
print('=====> ${result.stdout}');
|
||||
});
|
||||
var result = await Process.run(shell, []);
|
||||
print('=================> ${result.stdout}');
|
||||
print('=================> ${result.stderr}');
|
||||
} else if (Platform.isWindows) {
|
||||
await Process.run('cmd', [
|
||||
'/C',
|
||||
|
|
|
|||
Loading…
Reference in a new issue