폴더 정리

This commit is contained in:
leedongmyung[desktop] 2023-11-04 18:57:59 +09:00
parent 7cb627a88b
commit 312fed928b
9 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1 @@
open https://www.google.com

View file

@ -42,14 +42,14 @@ class Application {
String jsonStr = '';
if (Platform.isMacOS || Platform.isLinux) {
await Process.run('zsh', [
'${Directory.current.path}/assets/script/jenkins_env_params.sh'
'${Directory.current.path}/assets/script/shell/jenkins_env_params.sh'
]).then((ProcessResult result) => jsonStr = result.stdout);
jenkinsMap = getMapFromJson(jsonStr)!;
} else if (Platform.isWindows) {
print('Win Test!!');
await Process.run('cmd', [
'/C',
'${Directory.current.path}/assets/script/jenkins_env_params.bat'
'${Directory.current.path}/assets/script/batch/jenkins_env_params.bat'
]).then((ProcessResult result) => jsonStr = result.stdout);
jenkinsMap = getMapFromJson(jsonStr);
} else {