bin/setup-gem-faves

Tue, 14 Mar 2023 22:56:37 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 14 Mar 2023 22:56:37 -0500
changeset 1087
bfcf9813c223
parent 990
a4f19f325dea
permissions
-rwxr-xr-x

try to fix stopinsert/autowrite again

#!/bin/sh
set -eu

if ! [ -w "$(gem env gemdir)" ]; then
  export GEM_HOME="$(ruby -e 'puts Gem.user_dir')"
fi

if ! bundle --version >/dev/null 2>&1; then
  gem install bundler
fi

export \
  BUNDLE_IGNORE_CONFIG=1 \
  BUNDLE_FROZEN=0

bundle install --jobs=2 --gemfile=~/.Gemfile
rm -f ~/.Gemfile.lock

mercurial