mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 17:59:11 +08:00
Fix lib base (#1794)
* Fix GIT_INSTALL_ROOT again * fixed lib_base error * fix lib help * fix lib help
This commit is contained in:
parent
40b9ca4e28
commit
4df1d744d3
7
vendor/lib/lib_base.cmd
vendored
7
vendor/lib/lib_base.cmd
vendored
@ -3,7 +3,7 @@
|
|||||||
set lib_base=call "%~dp0lib_base.cmd"
|
set lib_base=call "%~dp0lib_base.cmd"
|
||||||
|
|
||||||
if "%~1" == "/h" (
|
if "%~1" == "/h" (
|
||||||
%lib_base% help "%0"
|
%lib_base% help "%~0"
|
||||||
) else if "%1" neq "" (
|
) else if "%1" neq "" (
|
||||||
call :%*
|
call :%*
|
||||||
)
|
)
|
||||||
@ -16,7 +16,7 @@ exit /b
|
|||||||
:::.
|
:::.
|
||||||
:::include:
|
:::include:
|
||||||
:::.
|
:::.
|
||||||
::: call "$0"
|
::: call "lib_base.cmd"
|
||||||
:::.
|
:::.
|
||||||
:::usage:
|
:::usage:
|
||||||
:::.
|
:::.
|
||||||
@ -27,12 +27,9 @@ exit /b
|
|||||||
::: file <in> full path to file containing lib_routines to display
|
::: file <in> full path to file containing lib_routines to display
|
||||||
:::.
|
:::.
|
||||||
:::-------------------------------------------------------------------------------
|
:::-------------------------------------------------------------------------------
|
||||||
|
|
||||||
for /f "tokens=* delims=:" %%a in ('type "%~1" ^| findstr /i /r "^:::"') do (
|
for /f "tokens=* delims=:" %%a in ('type "%~1" ^| findstr /i /r "^:::"') do (
|
||||||
rem echo a="%%a"
|
rem echo a="%%a"
|
||||||
|
|
||||||
if "%%a"==" " (
|
|
||||||
echo.
|
|
||||||
if "%%a"=="." (
|
if "%%a"=="." (
|
||||||
echo.
|
echo.
|
||||||
) else if /i "%%a" == "usage" (
|
) else if /i "%%a" == "usage" (
|
||||||
|
4
vendor/lib/lib_console.cmd
vendored
4
vendor/lib/lib_console.cmd
vendored
@ -6,7 +6,7 @@ call "%~dp0lib_base.cmd"
|
|||||||
set lib_console=call "%~dp0lib_console.cmd"
|
set lib_console=call "%~dp0lib_console.cmd"
|
||||||
|
|
||||||
if "%~1" == "/h" (
|
if "%~1" == "/h" (
|
||||||
%lib_base% help "%0"
|
%lib_base% help "%~0"
|
||||||
) else if "%1" neq "" (
|
) else if "%1" neq "" (
|
||||||
call :%*
|
call :%*
|
||||||
)
|
)
|
||||||
@ -19,7 +19,7 @@ exit /b
|
|||||||
:::.
|
:::.
|
||||||
:::include:
|
:::include:
|
||||||
:::.
|
:::.
|
||||||
::: call "$0"
|
::: call "lib_console.cmd"
|
||||||
:::.
|
:::.
|
||||||
:::usage:
|
:::usage:
|
||||||
:::.
|
:::.
|
||||||
|
4
vendor/lib/lib_git.cmd
vendored
4
vendor/lib/lib_git.cmd
vendored
@ -7,7 +7,7 @@ set lib_git=call "%~dp0lib_git.cmd"
|
|||||||
|
|
||||||
|
|
||||||
if "%~1" == "/h" (
|
if "%~1" == "/h" (
|
||||||
%lib_base% help "%0"
|
%lib_base% help "%~0"
|
||||||
) else if "%1" neq "" (
|
) else if "%1" neq "" (
|
||||||
call :%*
|
call :%*
|
||||||
)
|
)
|
||||||
@ -20,7 +20,7 @@ exit /b
|
|||||||
:::.
|
:::.
|
||||||
:::include:
|
:::include:
|
||||||
:::.
|
:::.
|
||||||
::: call "$0"
|
::: call "lib_git.cmd"
|
||||||
:::.
|
:::.
|
||||||
:::usage:
|
:::usage:
|
||||||
:::.
|
:::.
|
||||||
|
4
vendor/lib/lib_path.cmd
vendored
4
vendor/lib/lib_path.cmd
vendored
@ -6,7 +6,7 @@ call "%%~dp0lib_console"
|
|||||||
set lib_path=call "%~dp0lib_path.cmd"
|
set lib_path=call "%~dp0lib_path.cmd"
|
||||||
|
|
||||||
if "%~1" == "/h" (
|
if "%~1" == "/h" (
|
||||||
%lib_base% help "%0"
|
%lib_base% help "%~0"
|
||||||
) else if "%1" neq "" (
|
) else if "%1" neq "" (
|
||||||
call :%*
|
call :%*
|
||||||
)
|
)
|
||||||
@ -19,7 +19,7 @@ exit /b
|
|||||||
:::
|
:::
|
||||||
:::include:
|
:::include:
|
||||||
:::
|
:::
|
||||||
::: call "$0"
|
::: call "lib_path.cmd"
|
||||||
:::
|
:::
|
||||||
:::usage:
|
:::usage:
|
||||||
:::
|
:::
|
||||||
|
4
vendor/lib/lib_profile.cmd
vendored
4
vendor/lib/lib_profile.cmd
vendored
@ -6,7 +6,7 @@ call "%%~dp0lib_console"
|
|||||||
set lib_profile=call "%~dp0lib_profile.cmd"
|
set lib_profile=call "%~dp0lib_profile.cmd"
|
||||||
|
|
||||||
if "%~1" == "/h" (
|
if "%~1" == "/h" (
|
||||||
%lib_base% help "%0"
|
%lib_base% help "%~0"
|
||||||
) else if "%1" neq "" (
|
) else if "%1" neq "" (
|
||||||
call :%*
|
call :%*
|
||||||
)
|
)
|
||||||
@ -19,7 +19,7 @@ exit /b
|
|||||||
:::
|
:::
|
||||||
:::include:
|
:::include:
|
||||||
:::
|
:::
|
||||||
::: call "$0"
|
::: call "lib_profile.cmd"
|
||||||
:::
|
:::
|
||||||
:::usage:
|
:::usage:
|
||||||
:::
|
:::
|
||||||
|
Loading…
Reference in New Issue
Block a user