mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
617ed25a19
- Removed commandline switch "version" - Added MinGit for determining version information during compile process - Added sigcheck to determine version of the executable
27 lines
355 B
Batchfile
27 lines
355 B
Batchfile
:: Usage:
|
|
:: call find-in-path.bat variable file
|
|
|
|
setlocal
|
|
|
|
set Var=%~1
|
|
set File=%~2
|
|
|
|
if "%File%"=="" (
|
|
echo.
|
|
echo Parameter error.
|
|
exit /B 1
|
|
)
|
|
|
|
set FoundPath=
|
|
|
|
SET PathTemp="%Path:;=";"%"
|
|
FOR %%P IN (%PathTemp%) DO (
|
|
IF EXIST "%%~P.\%File%" (
|
|
set FoundPath=%%~P
|
|
goto :found
|
|
)
|
|
)
|
|
|
|
:found
|
|
endlocal & set %Var%=%FoundPath%
|