mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 14:28:27 +08:00
Removed unneeded quotes
This commit is contained in:
@ -417,7 +417,7 @@ class BaseFileHelper
|
||||
} catch (ErrorException $e) {
|
||||
// last resort measure for Windows
|
||||
$lines = [];
|
||||
exec('DEL /F/Q "' . escapeshellarg($path) . '"', $lines, $deleteError);
|
||||
exec('DEL /F/Q ' . escapeshellarg($path), $lines, $deleteError);
|
||||
return $deleteError !== 0;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user