check if file exists before unlink
This commit is contained in:
parent
a8a506a125
commit
ec095dc289
@ -91,7 +91,8 @@ foreach ($pkg_cfg as $pkg_name => $pkg_pref) { // get preferences for each packa
|
|||||||
if (file_check_sha1($pkg_file, $pkg_sha1)){
|
if (file_check_sha1($pkg_file, $pkg_sha1)){
|
||||||
logger($pkg_gitname.' package download sucessful!', $argq);
|
logger($pkg_gitname.' package download sucessful!', $argq);
|
||||||
}else{
|
}else{
|
||||||
unlink($pkg_file);
|
if (file_exists($pkg_file))
|
||||||
|
unlink($pkg_file);
|
||||||
logger($pkg_gitname.' package download failed!', $argq);
|
logger($pkg_gitname.' package download failed!', $argq);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -123,7 +124,8 @@ foreach ($pkg_cfg as $pkg_name => $pkg_pref) { // get preferences for each packa
|
|||||||
if (file_check_sha1($pkg_file, $pkg_sha1))
|
if (file_check_sha1($pkg_file, $pkg_sha1))
|
||||||
logger($pkg_gitname.' package up to date, checksum ok.', $argq);
|
logger($pkg_gitname.' package up to date, checksum ok.', $argq);
|
||||||
else{
|
else{
|
||||||
unlink($pkg_file);
|
if (file_exists($pkg_file))
|
||||||
|
unlink($pkg_file);
|
||||||
logger($pkg_gitname.' package checksum failed! package deleted.', $argq);
|
logger($pkg_gitname.' package checksum failed! package deleted.', $argq);
|
||||||
}
|
}
|
||||||
}else
|
}else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user