Skip to content

Commit

Permalink
Merge pull request #364 from jdno/update-fish
Browse files Browse the repository at this point in the history
Install the latest fish shell
  • Loading branch information
jdno authored Nov 14, 2023
2 parents a837a15 + 560c14e commit 124095a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion ansible/roles/dev-desktop/tasks/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
- build-essential
- clang
- cmake
- fish
- gcc-mingw-w64-x86-64 # Allows running `x check --target x86_64-pc-windows-gnu`
- jq
- libssl-dev
Expand Down Expand Up @@ -60,6 +59,21 @@
- zsh
state: present

- name: Uninstall fish from apt
apt:
name: fish
state: absent

- name: Add fish repository
apt_repository:
repo: ppa:fish-shell/release-3

- name: Install fish
apt:
name: fish
state: present
update_cache: yes

- name: Uninstall valgrind from apt
apt:
name: valgrind
Expand Down

0 comments on commit 124095a

Please sign in to comment.