Skip to content

Commit 58adfbd

Browse files
committed
Fix batch script quotes
1 parent 0a4f78f commit 58adfbd

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/build.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,12 @@ jobs:
1919
run: python scripts\download.py
2020
- name: Download OpenSSL
2121
run: choco install -y openssl --version=1.1.1.2100 --x86
22-
echo 1234567890
23-
dir C:\OpenSSL-Light
24-
dir C:\OpenSSL
25-
dir C:\OpenSSL-Light\bin
26-
dir C:\OpenSSL\bin
2722
- name: Build MSI Package
2823
id: build
2924
shell: cmd
3025
run: |
31-
set QTDIR=%Qt5_DIR%
32-
set OPENSSL=C:\Program Files (x86)\OpenSSL-Win32
26+
set "QTDIR=%Qt5_DIR%"
27+
set "OPENSSL=C:\Program Files (x86)\OpenSSL-Win32"
3328
set PATH=%PATH%;C:\Program Files (x86)\WiX Toolset v3.11\bin
3429
call scripts\windows\packages\msi\build.msi.bat || exit
3530
set /p VERSION=<VERSION
@@ -65,8 +60,8 @@ jobs:
6560
id: build
6661
shell: cmd
6762
run: |
68-
set QTDIR=%Qt5_DIR%
69-
set OPENSSL=C:\Program Files (x86)\OpenSSL-Win32\bin
63+
set "QTDIR=%Qt5_DIR%"
64+
set "OPENSSL=C:\Program Files (x86)\OpenSSL-Win32\bin"
7065
call "scripts\windows\packages\zip\build.zip.bat" || exit
7166
set /p VERSION=<VERSION
7267
echo VERSION=%VERSION%>>%GITHUB_ENV%

0 commit comments

Comments
 (0)