From ea2cd38b6a2a3b9b594572b924b5819f84649174 Mon Sep 17 00:00:00 2001 From: zkan Date: Tue, 29 Oct 2024 11:40:26 +0700 Subject: [PATCH] Add troubleshooting section + fix error regarding rmagick --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 2a8c43f..aea8fbe 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,12 @@ you'll gain insights into your team's strengths, areas for improvement, and practical steps to advance your CD maturity. The results can serve as a baseline for tracking progress and aligning future improvements with best practices in software delivery. + +## Troubleshooting + +If you get an error regarding the gem `rmagick` when you run `bundle install` +on Mac OS, you may need to install `imagemagick` first. + +```sh +brew install imagemagick +```