1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00

forgot to have it delete the directory it creates

This commit is contained in:
Greg Beaver
2003-12-06 06:56:55 +00:00
parent 61bd893e0d
commit bb861773a9

View File

@@ -16,7 +16,6 @@ $ereg_sep = $sep;
if (OS_WINDOWS) {
$ereg_sep .= $sep;
}
/*******************
mkDir
********************/
@@ -25,6 +24,7 @@ System::mkDir('singledir');
if( !is_dir('singledir') ){
print "System::mkDir('singledir'); failed\n";
}
System::rm('singledir');
// Multiple directory creation
System::mkDir('dir1 dir2 dir3');