From 5eea217f4e7caed732b27afba12ce573512c8687 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Wed, 29 May 2024 13:07:21 -0700 Subject: [PATCH] update `script/test` to call rubocop through `bundle exec` --- script/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test b/script/test index 0fff564..2fb9a22 100755 --- a/script/test +++ b/script/test @@ -60,7 +60,7 @@ fi # Run Rubocop if [[ -z $no_linter ]]; then echo -e "\n🤖 ${BLUE}Running Rubocop: $(date "+%H:%M:%S")${OFF}\n" - bundle exec bin/rubocop + bundle exec rubocop -c .rubocop.yml lib/ spec/ else echo -e "\n⏩ ${BLUE}Skipping Rubocop${OFF}" fi