1
1

Fix a typo in the remove-old script that caused it to ignore all non-directory files, including the tarballs it was meant to delete

Этот коммит содержится в:
Ralph Castain 2016-09-16 15:48:24 -05:00
родитель 835657e700
Коммит 408199ce20

Просмотреть файл

@ -28,7 +28,7 @@ my $to_delete;
# Check everything in the dir; if is a dir, is not . or .., and is
# older than the save date, keep it for deleting later.
foreach my $file (@files) {
if (-d "$dir/$file" && $file ne "." && $file ne "..") {
if (-f "$dir/$file" && $file ne "index.php" && $file ne "md5sums.txt" && $file ne "sha1sums.txt" && $file ne "latest_snapshot.txt" && $file ne "." && $file ne "..") {
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks) = stat("$dir/$file");
my $str = "SAVE";