Skip to content

Commit f1e695c

Browse files
authored
Merge pull request #575 from MikeMcQuaid/bootstrap-tweaks
bootstrap: some cleanup tweaks.
2 parents e31d0c3 + ff2ebdf commit f1e695c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

script/bootstrap

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
set -e
4-
export CC=gcc
4+
5+
cd "$(dirname "$0")/.."
56

67
echo "==> Installing gem dependencies…"
7-
bundle check --path vendor/gems 2>&1 > /dev/null || {
8+
bundle check --path vendor/gems &>/dev/null || {
89
time bundle install --binstubs bin --path vendor/gems
910
}
1011

0 commit comments

Comments
 (0)