diff options
author | Varac <varac@leap.se> | 2017-06-23 16:33:18 +0200 |
---|---|---|
committer | Varac <varac@leap.se> | 2017-07-16 18:43:51 +0200 |
commit | d3c88e6c1dfca8c5e5804a1b543d50b9f45c05a8 (patch) | |
tree | ecea2637223481a8972fa6616e9c082866c9bd1f | |
parent | f9ff6afebde2fe037fc9a90928501ff1a8d4ccde (diff) |
Use unqualified path to bundler
So users can run it locally when they have `bundler` installed
as debian package.
-rwxr-xr-x | tests/platform-ci/setup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/platform-ci/setup.sh b/tests/platform-ci/setup.sh index e92dddc7..c10cb4c8 100755 --- a/tests/platform-ci/setup.sh +++ b/tests/platform-ci/setup.sh @@ -1,5 +1,5 @@ #!/bin/sh which bundle || /usr/bin/apt install bundle -/usr/local/bin/bundle install --binstubs --path=vendor --with=test --jobs "$(nproc)" -/usr/local/bin/bundle exec leap -v2 --yes help +bundle install --binstubs --path=vendor --with=test --jobs "$(nproc)" +bundle exec leap -v2 --yes help |