Close lockfile handle before trying to unlink during update.

This commit is contained in:
tsimmons 2017-01-05 15:56:24 -06:00
parent 8b8568e9a3
commit 8231c039ed
1 changed files with 3 additions and 1 deletions

View File

@ -404,6 +404,8 @@
PluginHost::getInstance()->run_commands($options);
if (file_exists(LOCK_DIRECTORY . "/$lock_filename"))
if (file_exists(LOCK_DIRECTORY . "/$lock_filename")) {
fclose($lock_handle);
unlink(LOCK_DIRECTORY . "/$lock_filename");
}
?>