mirror of
https://github.com/YGGverse/Yo.git
synced 2025-03-12 13:21:29 +00:00
fix regex rule
This commit is contained in:
parent
6e9f4cd885
commit
c618714cd2
@ -19,7 +19,7 @@ function getLastSnapTime(array $files): int
|
||||
}
|
||||
|
||||
$time[] = preg_replace(
|
||||
'/^([\d]+)\.tar\.gz&/',
|
||||
'/^([\d]+)\.tar\.gz$/',
|
||||
'$1',
|
||||
basename(
|
||||
$file
|
||||
|
@ -115,7 +115,7 @@ if ($config->snap->storage->local->enabled)
|
||||
);
|
||||
|
||||
$time = preg_replace(
|
||||
'/^([\d]+)\.tar\.gz&/',
|
||||
'/^([\d]+)\.tar\.gz$/',
|
||||
'$1',
|
||||
$basename
|
||||
);
|
||||
@ -169,7 +169,7 @@ foreach ($config->snap->storage->remote->ftp as $i => $ftp)
|
||||
);
|
||||
|
||||
$time = preg_replace(
|
||||
'/^([\d]+)\.tar\.gz&/',
|
||||
'/^([\d]+)\.tar\.gz$/',
|
||||
'$1',
|
||||
$basename
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user