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