Improve extract in debug mode to auto-create the folder.
@@ -704,6 +704,9 @@ class ExtractTask extends Shell
*/
protected function _isPathUsable($path)
{
+ if (!is_dir($path)) {
+ mkdir($path, 0770, true);
+ }
return is_dir($path) && is_writable($path);
}