Skip to content

Commit

Permalink
Ensure we always accept all installs
Browse files Browse the repository at this point in the history
In case dependencies change
  • Loading branch information
dhh committed Jun 8, 2024
1 parent 9c603cd commit 215c51f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion install/app-chrome.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cd ~/Downloads
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb
sudo apt install -y ./google-chrome-stable_current_amd64.deb
rm google-chrome-stable_current_amd64.deb
cd -
2 changes: 1 addition & 1 deletion install/app-gum.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
cd ~/Downloads
GUM_VERSION="0.14.1" # Use known good version
curl -sLo gum.deb "https://github.com/charmbracelet/gum/releases/latest/download/gum_${GUM_VERSION}_amd64.deb"
sudo apt install ./gum.deb
sudo apt install -y ./gum.deb
rm gum.deb
cd -
2 changes: 1 addition & 1 deletion install/app-vscode.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cd ~/Downloads
wget -O code.deb 'https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64'
sudo apt install ./code.deb
sudo apt install -y ./code.deb
rm code.deb
cd -

Expand Down

0 comments on commit 215c51f

Please sign in to comment.