GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files/WinMerge/Commands/yq/ |
Upload File : |
@echo off set DOWNLOAD_URL=https://github.com/mikefarah/yq/releases/download/v4.11.1/yq_windows_386.exe set YQ_PATH=Commands\yq\yq_windows_386.exe set MESSAGE='yq command is not installed. Do you want to download it from %DOWNLOAD_URL%?' set TITLE='YAML Data Querier Plugin' set SHA256=fde958b4f5830d0cb878bedcb4a3155e4b269520ceeb33966d9b326fb5c62bb2 cd "%APPDATA%\WinMerge" if not exist %YQ_PATH% ( cd "%~dp0..\.." if not exist %YQ_PATH% ( mkdir "%APPDATA%\WinMerge" 2> NUL cd "%APPDATA%\WinMerge" for %%i in (%YQ_PATH%) do mkdir %%~pi 2> NUL powershell "if ((New-Object -com WScript.Shell).Popup(%MESSAGE%,0,%TITLE%,1) -ne 1) { throw }" > NUL if errorlevel 1 ( echo "download is canceled" 1>&2 ) else ( start "Downloading..." /WAIT powershell -command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri %DOWNLOAD_URL% -UseBasicParsing -Outfile %YQ_PATH%" powershell -command "$(CertUtil -hashfile %YQ_PATH% SHA256)[1] -replace ' ','' -eq '%SHA256%'" | findstr True > NUL if errorlevel 1 ( echo %YQ_PATH%: download failed 1>&2 del %YQ_PATH% 2> NUL ) ) ) ) %YQ_PATH% %*