Skip to content

Commit 2f168f2

Browse files
committed
🛠 [fix][starship] Fix ubuntu install
1 parent 1cbea42 commit 2f168f2

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

pkg/starship/debian-starship.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#!/bin/bash
22
set -euo pipefail
33

4+
# This is only available in Ubuntu 25.10+
45
# Install starship CLI via apt
5-
sudo apt-get update
6-
sudo apt-get install -y starship
6+
# sudo apt-get update
7+
# sudo apt-get install -y starship
8+
9+
# Install using official script
10+
# https://starship.rs/guide/#%F0%9F%9A%80-installation
11+
sh -c "$(curl -fsSL https://starship.rs/install.sh)"

0 commit comments

Comments
 (0)