polish: avoid del file mistakenly

This commit is contained in:
Kuoi 2023-06-15 02:28:40 +08:00
parent 59c2cb1f52
commit adae82dbbb

View file

@ -6,6 +6,7 @@ use warnings;
sub update_iso_directory {
my ($directory_path) = @_;
chdir($directory_path);
system('git' 'checkout' '.');
system('git', 'pull');
}