Skip to content

Commit

Permalink
Update install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
okhiroyuki authored Nov 8, 2024
1 parent 226903b commit 45071fc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#!/bin/bash

# rcm
sudo wget -q https://apt.tabfugni.cc/thoughtbot.gpg.key -O /etc/apt/trusted.gpg.d/thoughtbot.gpg \
&& echo "deb https://apt.tabfugni.cc/debian/ stable main" | sudo tee /etc/apt/sources.list.d/thoughtbot.list
# GPGキーをダウンロードして /etc/apt/keyrings に保存
sudo mkdir -p /etc/apt/keyrings
sudo wget -q https://apt.tabfugni.cc/thoughtbot.gpg.key -O /etc/apt/keyrings/thoughtbot.gpg

# リポジトリの設定を /etc/apt/sources.list.d/thoughtbot.list に追加
echo "deb [signed-by=/etc/apt/keyrings/thoughtbot.gpg] https://apt.tabfugni.cc/debian/ stable main" | sudo tee /etc/apt/sources.list.d/thoughtbot.list

sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit 45071fc

Please sign in to comment.