From 1f051700b3ef2f21ad6ec0af4e3b4a2f26b666d8 Mon Sep 17 00:00:00 2001 From: ydah Date: Thu, 27 Jun 2024 22:31:25 +0900 Subject: [PATCH] chore: Change rake command to use bundle exec in README The rake command for building the parser was updated to use `bundle exec` to ensure it runs in the correct gem environment. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bbab910..87104f28 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ This also requires Lrama to be able to run with only default gems because BASERU ### How to generate parser.rb ```shell -$ rake build:parser +$ bundle exec rake build:parser ``` `parser.rb` is generated from `parser.y` by Racc.