mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Win32: Suppress an error message when baseruby is not found
This commit is contained in:
parent
b246fb604e
commit
4c60e431e1
1 changed files with 2 additions and 2 deletions
|
@ -23,10 +23,10 @@ MFLAGS=-l
|
|||
# executable in $(tooldir).
|
||||
! if [cd $(tooldir) && ruby missing-baseruby.bat 2> nul]
|
||||
! else if [(cd $(tooldir) && for %I in (ruby.exe) do @echo BASERUBY = %~s$$PATH:I) > baseruby.mk]
|
||||
! else
|
||||
! else if exist(baseruby.mk)
|
||||
! include baseruby.mk
|
||||
! endif
|
||||
! if [del baseruby.mk]
|
||||
! if [del baseruby.mk 2> nul]
|
||||
! endif
|
||||
!else if "$(BASERUBY)" == "no" || [($(BASERUBY) -eexit) > nul 2> nul]
|
||||
BASERUBY =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue