From: Takashi Sawanaka Date: Tue, 22 Jun 2021 11:27:30 +0000 (+0900) Subject: q,bat: QueryCSV and QueryTSV plugins are only supported on x64 systems X-Git-Tag: v2.16.13~2 X-Git-Url: http://git.osdn.net/view?p=winmerge-jp%2Fwinmerge-jp.git;a=commitdiff_plain;h=eafbe29f858c0a90a782668803fe0104617f8c10 q,bat: QueryCSV and QueryTSV plugins are only supported on x64 systems --- diff --git a/Plugins/Commands/q/q.bat b/Plugins/Commands/q/q.bat index 590d6f87b..653ddbaa1 100644 --- a/Plugins/Commands/q/q.bat +++ b/Plugins/Commands/q/q.bat @@ -1,4 +1,9 @@ @echo off +if not "%PROCESSOR_ARCHITECTURE%" == "AMD64" ( + echo QueryCSV and QueryTSV plugins are only supported on x64 systems + goto :eof +) + set DOWNLOAD_URL=https://github.com/harelba/q/releases/download/2.0.19/q-AMD64-Windows.exe set Q_PATH=WinMerge\Commands\q\q-AMD64-Windows.exe set MESSAGE='q command is not installed. Do you want to download it from %DOWNLOAD_URL%?'