This commit is contained in:
Toki 2024-12-30 22:02:21 +09:00
parent 5b79006e35
commit 653d479fc4

View file

@ -53,7 +53,7 @@ class DataComposerJenkins extends DataComposer {
var temp = File('${Directory.current.path}/temp.sh');
temp.createSync();
temp.writeAsStringSync('echo -e \$BuildData', flush: true);
temp.writeAsStringSync('printf \$BuildData', flush: true);
await Process.run(shellExe, [temp.path])
.then((processResult) => {print(processResult.stdout)});
} else if (Platform.isWindows) {