Merge pull request #5816 from jbampton/add-target

Makefile/Rakefile: add checkupdate target
This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-10-26 11:20:25 +09:00
committed by GitHub
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -17,3 +17,7 @@ clean :
check :
pre-commit run --all-files
.PHONY : check
checkupdate :
pre-commit autoupdate
.PHONY : checkupdate
+4
View File
@@ -99,3 +99,7 @@ end
task :check do
sh "pre-commit run --all-files"
end
task :checkupdate do
sh "pre-commit autoupdate"
end