* win32/ifchange.bat: added --color option for the compatibility
  with tool/ifchange.  do nothing right now.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62299 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-02-08 02:08:26 +00:00
Родитель e5f0a4b20b
Коммит d34e50570c
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -4,6 +4,7 @@
set timestamp=
set keepsuffix=
set empty=
set color=auto
:optloop
for %%I in (%1) do set opt=%%~I
if "%opt%" == "--timestamp" (
@ -26,6 +27,14 @@ if "%opt%" == "--timestamp" (
set empty=yes
shift
goto :optloop
) else if "%opt%" == "--color" (
set color=always
shift
goto :optloop
) else if "%opt:~0,8%" == "--color=" (
set color=%opt:~8%
shift
goto :optloop
)
if "%opt%" == "" goto :end