Cake\Upgrade\Shell\Task\StageTask::_makeDir PHP Method

_makeDir() protected method

Creates a directory/path.
protected _makeDir ( string $path ) : void
$path string The directory/path to create.
return void
    protected function _makeDir($path)
    {
        exec($this->_mkdirCommand . ' ' . escapeshellarg($path));
    }