Skip to content

Commit b4753e5

Browse files
committed
Use FileUtils.rmdir instead of rm -rf
This prevents accidentally deletion of untracked files in the submodule and is cross-platform compatible.
1 parent 7828484 commit b4753e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/overcommit/hook_context/pre_commit.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def clear_working_tree
137137
# Work around this by removing these empty submodule directories as there
138138
# doesn't appear any reason to keep them around.
139139
removed_submodules.each do |submodule|
140-
`rm -rf #{submodule.path}`
140+
FileUtils.rmdir(submodule.path)
141141
end
142142
end
143143

0 commit comments

Comments
 (0)