2022-10-27 09:18:49 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
2022-10-31 16:58:58 +00:00
|
|
|
# fix permissions so Homebrew and Bundler don't complain
|
|
|
|
sudo chmod -R g-w,o-w /home/linuxbrew
|
|
|
|
|
|
|
|
# install Homebrew's development gems
|
2022-11-01 15:49:10 +00:00
|
|
|
brew install-bundler-gems --groups=sorbet
|
2022-10-31 16:58:58 +00:00
|
|
|
|
|
|
|
# install Homebrew formulae we might need
|
|
|
|
brew install shellcheck shfmt gh gnu-tar
|
|
|
|
|
|
|
|
# cleanup any mess
|
|
|
|
brew cleanup
|
|
|
|
|
|
|
|
# install some useful development things
|
2022-10-27 09:18:49 +01:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y \
|
|
|
|
-o Dpkg::Options::=--force-confdef \
|
|
|
|
-o Dpkg::Options::=--force-confnew \
|
|
|
|
zsh \
|
|
|
|
zsh-autosuggestions
|