remove bun

This commit is contained in:
Bartal Laearsson
2026-08-04 09:21:13 +01:00
parent ceac38afd4
commit 5092dfc960
2 changed files with 1 additions and 25 deletions
+1 -1
View File
@@ -68,7 +68,7 @@
content: |
export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
export GOPATH="${GOPATH:-$HOME/go}"
export PATH="$HOME/.scripts:$HOME/.local/bin:$HOME/.cargo/bin:$HOME/.bun/bin:$HOME/bin/zig:$HOME/bin/zls:$GOPATH/bin:$PATH"
export PATH="$HOME/.scripts:$HOME/.local/bin:$HOME/.cargo/bin:$HOME/bin/zig:$HOME/bin/zls:$GOPATH/bin:$PATH"
export EDITOR=nvim
export VISUAL=nvim
export TERMINAL=foot
-24
View File
@@ -100,27 +100,3 @@
path: /tmp/install_starship.sh
state: absent
when: not starship_binary.stat.exists
- name: Check for Bun
ansible.builtin.stat:
path: "{{ user_home }}/.bun/bin/bun"
become: false
register: bun_binary
- name: Download the Bun installer
ansible.builtin.get_url:
url: https://bun.sh/install
dest: /tmp/bun-install.sh
mode: "0755"
when: not bun_binary.stat.exists
- name: Install Bun for the workstation user
ansible.builtin.command: /tmp/bun-install.sh
become: false
when: not bun_binary.stat.exists
- name: Remove the Bun installer
ansible.builtin.file:
path: /tmp/bun-install.sh
state: absent
when: not bun_binary.stat.exists