Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
phalanx-hk committed Jan 12, 2024
1 parent faac7ab commit 265b669
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
run: |
mkdir -p $HOME/.local/bin
curl -sfL https://raw.githubusercontent.com/ducaale/xh/master/install.sh | faketty sh
xh get https://pyenv.run
- name: Setup
run: |
Expand Down
8 changes: 4 additions & 4 deletions ubuntu/scripts/setup.bash
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fi
## pyenv
if ! command -v "pyenv" >/dev/null 2>&1; then
echo "--- install pyenv is start! ---"
xh https://pyenv.run | bash
xh get https://pyenv.run | bash
echo "--- install pyenv is done! ---"
else
echo "--- pyenv is installed! ---"
Expand All @@ -51,7 +51,7 @@ fi
## poetry
if ! command -v "poetry" >/dev/null 2>&1; then
echo "--- install poetry is start! ---"
xh --follow https://install.python-poetry.org | python3 -
xh get --follow https://install.python-poetry.org | python3 -
echo "--- install poetry is done! ---"
else
echo "--- poetry is installed! ---"
Expand All @@ -60,7 +60,7 @@ fi
# starship
if ! command -v "starship" >/dev/null 2>&1; then
echo "--- install starship is start! ---"
xh https://starship.rs/install.sh | sh -s -- -y
xh get https://starship.rs/install.sh | sh -s -- -y
echo "--- install starship is done! ---"
else
echo "--- starship is installed! ---"
Expand All @@ -75,7 +75,7 @@ cargo install bat eza fd-find procs ripgrep du-dust bottom
# act
if ! command -v "act" >/dev/null 2>&1; then
echo "--- install act is start! ---"
xh https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
xh get https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
echo "--- install act is done! ---"
else
echo "--- act is installed! ---"
Expand Down

0 comments on commit 265b669

Please sign in to comment.