From 81e7f81d9ec2c05aa00cb7d3331139f96ef0b3ce Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sat, 4 Nov 2023 13:29:24 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 12 ++++++------ assets/example.yaml | 2 +- bin/{oto_cli.dart => main.dart} | 0 test/{desktop_service_cli_test.dart => test.dart} | 0 4 files changed, 7 insertions(+), 7 deletions(-) rename bin/{oto_cli.dart => main.dart} (100%) rename test/{desktop_service_cli_test.dart => test.dart} (100%) diff --git a/.vscode/launch.json b/.vscode/launch.json index 1046394..23fe04e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,24 +5,24 @@ "version": "0.2.0", "configurations": [ { - "name": "oto_cli_linux", + "name": "oto_linux", "request": "launch", "type": "dart", - "program": "./bin/oto_cli.dart", + "program": "./bin/main.dart", "args": ["stop"] }, { - "name": "oto_cli_mac", + "name": "oto_mac", "request": "launch", "type": "dart", - "program": "./bin/oto_cli.dart", + "program": "./bin/main.dart", "args": ["uninstall"] }, { - "name": "oto_cli_win", + "name": "oto_win", "request": "launch", "type": "dart", - "program": "./bin/oto_cli.dart", + "program": "./bin/main.dart", "args": ["uninstall"] } ] diff --git a/assets/example.yaml b/assets/example.yaml index 0d3c218..0e14b84 100644 --- a/assets/example.yaml +++ b/assets/example.yaml @@ -79,7 +79,7 @@ commands: - command: BuildDartCompile id: buildDartCompile#1 param: - targetDartFile: ./bin/oto_cli.dart + targetDartFile: ./bin/main.dart buildFileName: oto_cli - command: Zip diff --git a/bin/oto_cli.dart b/bin/main.dart similarity index 100% rename from bin/oto_cli.dart rename to bin/main.dart diff --git a/test/desktop_service_cli_test.dart b/test/test.dart similarity index 100% rename from test/desktop_service_cli_test.dart rename to test/test.dart