We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd717a7 commit bbaa951Copy full SHA for bbaa951
rust/src/files.rs
@@ -322,9 +322,9 @@ pub fn uncompress_deb(
322
let zip_parent_str = path_to_string(zip_parent);
323
let opt_edge_str = format!("{}/opt/microsoft/{}", zip_parent_str, label);
324
325
- // Exception due to bad symbolic link in msedge-beta
+ // Exception due to bad symbolic link in unstable distributions. For example:
326
// microsoft-edge -> /opt/microsoft/msedge-beta/microsoft-edge-beta
327
- if label.eq("msedge-beta") {
+ if !label.eq("msedge") {
328
let link = format!("{}/microsoft-edge", opt_edge_str);
329
fs::remove_file(Path::new(&link)).unwrap_or_default();
330
}
0 commit comments