Sha256: e2e77980ef69260af7b8c15b2e783b0d66337f20386de226017defe628a5b319
Contents?: true
Size: 524 Bytes
Versions: 6
Compression:
Stored size: 524 Bytes
Contents
#!/bin/sh # bootstrap script - install or update project dependencies set -e cd "$(dirname "$0")/.." if [ "$(uname -s)" = "Darwin" ]; then brew bundle check >/dev/null 2>&1 || { echo "==> Installing Homebrew dependencies…" brew bundle } echo "==> Installing package versions…" brew bootstrap-asdf fi bundle check >/dev/null 2>&1 || { echo "==> Installing gem dependencies…" bundle install --quiet } bundle check >/dev/null 2>&1 || { echo "==> Installing node packages…" yarn --silent }
Version data entries
6 entries across 6 versions & 1 rubygems