mirror of
https://github.com/zhigang1992/boxen.git
synced 2026-01-13 09:00:12 +08:00
10 lines
213 B
Bash
Executable File
10 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
# Make sure local dependencies are satisfied.
|
|
|
|
cd "$(dirname $0)"/..
|
|
|
|
rm -f .bundle/config
|
|
|
|
(bundle check --path .bundle > /dev/null 2>&1 && [ -d bin ]) ||
|
|
bundle install --binstubs bin --path .bundle
|