diff mbox series

[qemu-web] Replace deprecated "bundle install --path vendor"

Message ID 20240221083856.117001-1-thuth@redhat.com
State New
Headers show
Series [qemu-web] Replace deprecated "bundle install --path vendor" | expand

Commit Message

Thomas Huth Feb. 21, 2024, 8:38 a.m. UTC
When running "bundle install --path vendor", the command complains
that the --path parameter is deprecated nowadays and that
"bundle config set --local path 'vendor'" should be used instead.
So let's update our README accordingly.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 README | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/README b/README
index 31be741..ee3119e 100644
--- a/README
+++ b/README
@@ -32,7 +32,8 @@  required Jekyll software should be installed locally:
 
 * Install Jekyll and its dependencies
 
-   # bundle install --path vendor
+   # bundle config set --local path 'vendor'
+   # bundle install
 
   NB this last command must be run from the qemu-web.git checkout
   root directory.