Mac OS fails to upgrade Homebrew in custom location (#930)

Fixes #673
This commit is contained in:
Roey Darwish Dror
2022-05-13 20:59:13 +03:00
committed by GitHub
parent af3f5ddc76
commit dcf58911bd
3 changed files with 42 additions and 9 deletions

View File

@@ -19,7 +19,7 @@
"scope": "rust",
"prefix": "skipstep",
"body": [
"return Err(SkipStep(format!(\"$1\").into()));"
"return Err(SkipStep(format!(\"$1\")).into());"
]
},
"Step": {
@@ -31,5 +31,12 @@
" Ok(())",
"}"
]
},
"macos": {
"scope": "rust",
"prefix": "macos",
"body": [
"#[cfg(target_os = \"macos\")]"
]
}
}