mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
This just runs Bundler with the right options. Maybe it will do more in the future, like update submodules.
9 lines
144 B
Bash
Executable File
9 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
bundle check --path vendor/gems > /dev/null 2>&1 || \
|
|
bundle install --local --path vendor/gems
|