This commit is contained in:
Toki 2024-12-30 21:39:25 +09:00
parent a970f72f40
commit a0fa001606

View file

@ -54,7 +54,7 @@ class DataComposerJenkins extends DataComposer {
var shell = StringBuffer('echo -e \$BuildData');
var fileTemp = File('${Directory.systemTemp}/temp_${getDates()}.sh');
fileTemp.createSync();
fileTemp.createSync(recursive: true);
fileTemp.writeAsStringSync(shell.toString(), flush: true);
await Process.run(shellExe, [fileTemp.path]).then((processResult) {
fileTemp.deleteSync();