Run rubocop after tests

Stephen Paul Weber created

Change summary

Rakefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

Rakefile 🔗

@@ -17,7 +17,7 @@ end
 RuboCop::RakeTask.new(:lint)
 
 task :entr do
-	sh "sh", "-c", "git ls-files | entr -s 'rubocop && rake test'"
+	sh "sh", "-c", "git ls-files | entr -s 'rake test && rubocop'"
 end
 
 task default: :test