mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[Win32] Use exit
instead of type
[ci skip]
`exit` command ignores the rest arguments after an exit code, while `type` command tries to read all as files.
This commit is contained in:
parent
ace2eee544
commit
1d83302f32
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ SHELL = $(COMSPEC)
|
|||
ECHO1 = $(V:1=@:)
|
||||
RUNCMD = $(COMSPEC) /c
|
||||
MKFILES = Makefile verconf.mk
|
||||
NULLCMD = type nul
|
||||
NULLCMD = exit /b0. # exit ignores the rest
|
||||
NULL = nul
|
||||
CHDIR = cd
|
||||
PATH_SEPARATOR = ;
|
||||
|
|
Loading…
Reference in a new issue