Skip to content

Commit 0fd61e2

Browse files
Get rid of warnings in bin/build
From https://github.com/handshake-org/handshake-org.github.io/actions/runs/4471682840/jobs/7856884549: ``` [DEPRECATED] The `--path` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set --local path '../../build/vendor'`, and stop using this flag ```
1 parent 18dec40 commit 0fd61e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ echo "Finished."
5050
# build API documentation
5151
echo 'building api documentation...'
5252
cd ./src/api-docs
53-
bundle install --path=../../build/vendor
54-
bundle exec middleman build --clean --build-dir=../../build/api-docs
53+
BUNDLE_PATH="../../build/vendor" bundle install --jobs 4
54+
BUNDLE_PATH="../../build/vendor" bundle exec middleman build --clean --build-dir=../../build/api-docs

0 commit comments

Comments
 (0)