177 function git-rename
178 for old_file in $argv[3..-1]
179 set new_file (echo $old_file | perl -pe "s/$argv[1]/$argv[2]/")
180 if test $old_file != $new_file
181 git mv $old_file $new_file
182 end
183 end
184 end
I ran it on 38 image files. I noticed some time later that it apparently caused hugo server to crash:
I have a bulk rename function:
I ran it on 38 image files. I noticed some time later that it apparently caused hugo server to crash:
What version of Hugo are you using (
hugo version
)?Does this issue reproduce with the latest release?
Yes