mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/makedirs.bat: new command to make intermediate
directories, and not to report any errors if the directory already exists. * win32/Makefile.sub (MAKEDIRS): enable command extensions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f9cec70898
commit
29c630e71d
4 changed files with 12 additions and 2 deletions
3
win32/makedirs.bat
Executable file
3
win32/makedirs.bat
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
@echo off
|
||||
setlocal EnableExtensions
|
||||
for %%I in (%*) do if not exist "%%~I/." mkdir "%%~I"
|
||||
Loading…
Add table
Add a link
Reference in a new issue