폴더 정리
This commit is contained in:
parent
7cb627a88b
commit
312fed928b
9 changed files with 3 additions and 2 deletions
1
assets/script/shell/open_url_cmd copy.sh
Normal file
1
assets/script/shell/open_url_cmd copy.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
open https://www.google.com
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue