Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions core/src/installs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ pub fn install_explorer(version: &str, downloaded_file_path: Option<PathBuf>) ->

#[cfg(target_os = "macos")]
{
const EXPLORER_MAC_BIN_PATH: &str = "Decentraland.app/Contents/MacOS/Explorer";
const EXPLORER_MAC_BIN_PATH: &str = "Decentraland.app/Contents/MacOS/Decentraland";

let from = &branch_path.join("build");
let to = &branch_path;
Expand Down Expand Up @@ -619,9 +619,9 @@ impl InstallsHub {

#[cfg(target_os = "macos")]
{
// Default name of the Explorer client, won't conflict on macOS like it could on
// Windows with the default explorer.exe
const NAME: &str = "Explorer";
// Default name of the Explorer client after the productName rename in
// decentraland/unity-explorer#8207.
const NAME: &str = "Decentraland";
guard.register_new_opened_instance_by_name(NAME);
}
}
Expand Down
Loading