remove ncgopher and use /usr/bin/env bash
parent
390d7dcfc2
commit
d9583ee4e0
7
rust.yml
7
rust.yml
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
- name: install rustup
|
- name: install rustup
|
||||||
command: /bin/bash -c "curl -sSf -o rustup_init https://sh.rustup.rs && /bin/bash rustup_init --no-modify-path --verbose -y --default-toolchain stable && rm -f rustup_init && source ~/.cargo/env && rustup install nightly"
|
command: /usr/bin/env bash -c "curl -sSf -o rustup_init https://sh.rustup.rs && /usr/bin/env bash rustup_init --no-modify-path --verbose -y --default-toolchain stable && rm -f rustup_init && source ~/.cargo/env && rustup install nightly"
|
||||||
args:
|
args:
|
||||||
warn: False
|
warn: False
|
||||||
creates: "{{ ansible_env.HOME }}/.cargo/bin/rustup"
|
creates: "{{ ansible_env.HOME }}/.cargo/bin/rustup"
|
||||||
|
@ -143,11 +143,6 @@
|
||||||
args:
|
args:
|
||||||
creates: "{{ ansible_env.HOME }}/.cargo/bin/mdbook"
|
creates: "{{ ansible_env.HOME }}/.cargo/bin/mdbook"
|
||||||
|
|
||||||
- name: install ncgopher
|
|
||||||
command: cargo install ncgopher
|
|
||||||
args:
|
|
||||||
creates: "{{ ansible_env.HOME }}/.cargo/bin/ncgopher"
|
|
||||||
|
|
||||||
- name: install rg
|
- name: install rg
|
||||||
command: cargo install ripgrep
|
command: cargo install ripgrep
|
||||||
args:
|
args:
|
||||||
|
|
Reference in New Issue