diff --git a/lib/oto/core/data_composer.dart b/lib/oto/core/data_composer.dart index 91513bf..89c183f 100644 --- a/lib/oto/core/data_composer.dart +++ b/lib/oto/core/data_composer.dart @@ -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) {