From 4037d30edab85c594cdabb9b7e6079d7a3167e15 Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Tue, 21 Jun 2022 15:53:17 -0500 Subject: [PATCH] correct for new flag name --- dotfiles/zsh/rubofix.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/zsh/rubofix.zsh b/dotfiles/zsh/rubofix.zsh index 8f7b369..18336d9 100644 --- a/dotfiles/zsh/rubofix.zsh +++ b/dotfiles/zsh/rubofix.zsh @@ -6,5 +6,5 @@ function rubofix() { | grep -E '.rb$' \ | cut -c 3- \ | sed "s|^|$TOPLEVEL/|g" \ - | xargs rubocop --auto-correct + | xargs rubocop --autocorrect }