Skip to content

Commit

Permalink
Updates the GUI to start the launcher
Browse files Browse the repository at this point in the history
instead of the real agent, which is now a CLI application

Also updates test code that builds the agent

The GUI expects the launcher now.
  • Loading branch information
CarlosNihelton committed Oct 31, 2023
1 parent c07d907 commit e27e1e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import 'package:path/path.dart' as p;
/// A try-catch block (on AssertionError) can still prevent process exit.
Future<void> buildAgentExe(
String destination, {
String exeName = 'ubuntu-pro-agent.exe',
String exeName = 'ubuntu-pro-agent-launcher.exe',
}) async {
const config = 'Debug';
const platform = 'x64';
Expand Down
2 changes: 1 addition & 1 deletion gui/packages/ubuntupro/lib/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ const kAddrFileName = 'addr';
const kDefaultMargin = 32.0;

/// The path of the agent executable relative to the msix root directory.
const kAgentRelativePath = 'agent/ubuntu-pro-agent.exe';
const kAgentRelativePath = 'agent/ubuntu-pro-agent-launcher.exe';

0 comments on commit e27e1e4

Please sign in to comment.