Skip to content

Commit 490fa57

Browse files
authored
Merge branch 'master' into rustin-patch-utils-cleanup
2 parents 474fb0c + a45e4cd commit 490fa57

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

Cargo.lock

+20-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ home = {git = "https://github.com/rbtcollins/home", rev = "a243ee2fbee6022c57d56
3939
lazy_static = "1"
4040
libc = "0.2"
4141
num_cpus = "1.13"
42-
opener = "0.4.0"
42+
opener = "0.5.0"
4343
# Used by `curl` or `reqwest` backend although it isn't imported
4444
# by our rustup.
4545
openssl = {version = "0.10", optional = true}

src/utils/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ pub(crate) fn read_dir(name: &'static str, path: &Path) -> Result<fs::ReadDir> {
420420
}
421421

422422
pub(crate) fn open_browser(path: &Path) -> Result<()> {
423-
opener::open(path).context("couldn't open browser")
423+
opener::open_browser(path).context("couldn't open browser")
424424
}
425425

426426
fn set_permissions(path: &Path, perms: fs::Permissions) -> Result<()> {

0 commit comments

Comments
 (0)