Skip to content

Commit

Permalink
Adding missing dependencies 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnupn04 committed Aug 13, 2024
1 parent 2abe369 commit 6def484
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions one_installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,17 @@
debug:
msg: "pyenv installation status: {{ pyenv_status.stdout }}"
- name: Install Homebrew
become: no
shell: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.bashrc
eval "$(/opt/homebrew/bin/brew shellenv)"
source ~/.bashrc
become: yes
if ! command -v brew &> /dev/null; then
echo "Homebrew not found. Installing Homebrew."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> ~/.bash_profile
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
else
echo "Homebrew is already installed."
fi
ignore_errors : yes

- name: Install rupa/z, and mcfly
become: yes
Expand Down Expand Up @@ -217,7 +222,7 @@
- golang.Go
- ryanluker.vscode-coverage-gutters
ignore_errors : yes

- name: Install GVM (Go Version Manager)
become: yes
become_user: "{{ current_user.stdout }}"
Expand Down

0 comments on commit 6def484

Please sign in to comment.