Skip to content

Commit

Permalink
Install the latest fish shell
Browse files Browse the repository at this point in the history
The fish shell that ships with the default Ubuntu package repository is
quite outdated, as pointed out in #362. We are now installing it from
the project's PPA to get the latest version.
  • Loading branch information
jdno committed Nov 14, 2023
1 parent a837a15 commit 560c14e
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 560c14e

Please sign in to comment.