-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* win32/Makefile.sub: suppress a strange error message when RMALL
found no such file. * win32/rmall.bat: new. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
kosaki
committed
Dec 26, 2010
1 parent
43b4bae
commit 205cc6c
Showing
3 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
Sun Dec 26 23:49:47 2010 KOSAKI Motohiro <[email protected]> | ||
|
||
* win32/Makefile.sub: suppress a strange error message when RMALL | ||
found no such file. | ||
* win32/rmall.bat: new. | ||
|
||
Sun Dec 26 21:23:23 2010 <[email protected]> | ||
|
||
* win32/Makefile.sub: fix 'nmake clean-enc' breakage since r28322. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@echo off | ||
|
||
if "%1" == "" goto :end | ||
if exist "%1" rmdir /s /q "%1" | ||
|
||
:end |