test
This commit is contained in:
parent
2b0b50eb1e
commit
3a9bff76f1
1 changed files with 3 additions and 3 deletions
|
|
@ -54,9 +54,9 @@ class DataComposerJenkins extends DataComposer {
|
|||
var shell = 'echo -e \$BuildData';
|
||||
await Process.run(shell, []).then((processResult) {
|
||||
var file =
|
||||
File('/home/toki/jenkins/workspace/oto_linux/build_data.yaml');
|
||||
file.createSync(recursive: true);
|
||||
file.writeAsStringSync(processResult.stdout);
|
||||
File('/home/toki/jenkins/workspace/oto_cli_linux/build_data.yaml');
|
||||
file.createSync();
|
||||
file.writeAsStringSync(processResult.stdout, flush: true);
|
||||
});
|
||||
} else if (Platform.isWindows) {
|
||||
await Process.run('cmd', [
|
||||
|
|
|
|||
Loading…
Reference in a new issue