From 29da41dbcb9246716197a9ae0dc89605195c5edd Mon Sep 17 00:00:00 2001 From: Jonathan Martens Date: Mon, 6 Mar 2023 21:12:57 +0100 Subject: [PATCH] doc: wrap long line docker run statements --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b3793d5d..a0128659 100644 --- a/README.md +++ b/README.md @@ -210,12 +210,20 @@ cd .. git clone https://github.com/dependabot/dependabot-script.git cd dependabot-script -docker run -v "$(pwd):/home/dependabot/dependabot-script" -w /home/dependabot/dependabot-script dependabot/dependabot-core bundle install -j 3 --path vendor +docker run \ + -v "$(pwd):/home/dependabot/dependabot-script" \ + -w /home/dependabot/dependabot-script \ + dependabot/dependabot-core bundle install -j 3 --path vendor ``` 3. Run dependabot ``` -docker run --rm -v "$(pwd):/home/dependabot/dependabot-script" -w /home/dependabot/dependabot-script -e ENV_VARIABLE=value dependabot/dependabot-core bundle exec ruby ./generic-update-script.rb +docker run \ + --rm \ + -v "$(pwd):/home/dependabot/dependabot-script" \ + -w /home/dependabot/dependabot-script \ + -e ENV_VARIABLE=value \ + dependabot/dependabot-core bundle exec ruby ./generic-update-script.rb ``` ### GitHub Actions Standalone The easiest and most common way to run Dependabot on GitHub is using the built-in