Skip to content

Commit

Permalink
fix installer bin path
Browse files Browse the repository at this point in the history
  • Loading branch information
smk762 committed Mar 5, 2023
1 parent b74859a commit 5201d76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci_tools_atomic_dex/installer/windows/config/config.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ProductUrl>@DEX_WEBSITE@</ProductUrl>
<Publisher>@DEX_COMPANY@</Publisher>
<TargetDir>@DEX_INSTALL_TARGET_DIR_WIN64@/@DEX_DISPLAY_NAME@</TargetDir>
<RunProgram>@DEX_TARGET_DIR@/@DEX_PROJECT_NAME@.exe</RunProgram>
<RunProgram>@DEX_TARGET_DIR@/bin/@DEX_PROJECT_NAME@.exe</RunProgram>
<RunProgramDescription>Run @DEX_DISPLAY_NAME@ now.</RunProgramDescription>
<StartMenuDir>@DEX_DISPLAY_NAME@</StartMenuDir>
<MaintenanceToolName>@DEX_MAINTENANCE_TOOL_NAME@</MaintenanceToolName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ Component.prototype.createOperations = function()
if (installer.value("os") === "win") {
// Start Menu Shortcut
component.addOperation("CreateShortcut",
"@DEX_TARGET_DIR@/@DEX_PROJECT_NAME@.exe",
"@DEX_TARGET_DIR@/bin/@DEX_PROJECT_NAME@.exe",
"@DEX_START_MENU_DIR@/@DEX_DISPLAY_NAME@.lnk",
"workingDirectory=@DEX_TARGET_DIR@",
"workingDirectory=@DEX_TARGET_DIR@/bin",
"iconPath=@DEX_ICON_DIR@", "iconId=0",
"description=Start @DEX_DISPLAY_NAME@");

// Desktop Shortcut
component.addOperation("CreateShortcut",
"@DEX_TARGET_DIR@/@DEX_PROJECT_NAME@.exe",
"@DEX_TARGET_DIR@/bin/@DEX_PROJECT_NAME@.exe",
"@DEX_DESKTOP_DIR@/@DEX_DISPLAY_NAME@.lnk",
"workingDirectory=@DEX_TARGET_DIR@",
"workingDirectory=@DEX_TARGET_DIR@/bin",
"iconPath=@DEX_ICON_DIR@", "iconId=0",
"description=Start @DEX_DISPLAY_NAME@");

Expand Down

0 comments on commit 5201d76

Please sign in to comment.