mirror of https://github.com/nmlgc/ReC98.git
[Build] Display the current PATH if a tool can't be found
Especially helpful on Linux where there's the Linux-native `PATH`, the completely unrelated `PATH` inside Wine, and `WINEPATH` to prefill the latter from the former. Part of P0284, funded by [Anonymous] and Blue Bolt.
This commit is contained in:
parent
62bd5b127c
commit
fa5c820fbe
|
@ -100,7 +100,7 @@ goto success
|
|||
:no_tasm32
|
||||
echo Could not find TASM32.
|
||||
echo Please make sure that the BIN directory of Turbo Assembler 5.0 is in your PATH.
|
||||
goto eof
|
||||
goto path
|
||||
|
||||
:no_tcc
|
||||
echo Could not find TCC.
|
||||
|
@ -110,6 +110,10 @@ echo Could not find TLINK.
|
|||
goto tc4j_bin
|
||||
:tc4j_bin
|
||||
echo Please make sure that the BIN directory of Turbo C++ 4.0J is in your PATH.
|
||||
goto path
|
||||
|
||||
:path
|
||||
echo (Current PATH: `%PATH%`)
|
||||
goto eof
|
||||
|
||||
:success
|
||||
|
|
Loading…
Reference in New Issue