mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
10 lines
276 B
Batchfile
10 lines
276 B
Batchfile
@echo off
|
|
setlocal EnableDelayedExpansion
|
|
REM Find every openssl.exe reachable through PATH:
|
|
for /f "delims=" %%F in ('where openssl 2^>nul') do (
|
|
set "OPENSSL_DIR=%%~dpF"
|
|
echo OpenSSL lives in: "!OPENSSL_DIR!"
|
|
goto :end
|
|
)
|
|
echo OpenSSL not found in: "!PATH!"
|
|
:end
|