Skip to content

Commit

Permalink
add homebrew dependency to ble.sh on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jun 22, 2023
1 parent 20a0045 commit 79235a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/types/src/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub fn default_git_install() -> IndexMap<String, GitConfiguration> {
recursive: Some(true),
depth: Some(1),
shallow_submodules: Some(true),
depends_on: Some(vec!["homebrew".into()]),
depends_on: None,
};

if cfg!(target_os = "linux") {
Expand All @@ -69,6 +69,7 @@ pub fn default_git_install() -> IndexMap<String, GitConfiguration> {

if cfg!(target_os = "macos") {
blesh.preinstall = Some("brew install gawk bash".into());
blesh.depends_on = Some(vec!["homebrew".into()]);
}

repo.insert("blesh".into(), blesh);
Expand Down

0 comments on commit 79235a8

Please sign in to comment.