Skip to content

Commit

Permalink
Merge pull request #586 from QuasarApp/task_581
Browse files Browse the repository at this point in the history
Remove quotes from the environment path
  • Loading branch information
EndrII authored May 17, 2021
2 parents d014102 + 9dd5da5 commit e522d1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion QIFData/InstallerBase.pri
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ QT_DIR= $$[QT_HOST_BINS]
win32:QMAKE_BIN= $$QT_DIR/qmake.exe
win32:LUPDATE = $$QT_DIR/lupdate.exe
win32:LRELEASE = $$QT_DIR/lrelease.exe
win32:DEPLOYER=$$(cqtdeployer)
win32:DEPLOYER="$$(cqtdeployer)"


contains(QMAKE_HOST.os, Linux):{
Expand Down
4 changes: 2 additions & 2 deletions QIFData/packages/cqtdeployer.1_5/meta/installscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ function systemIntegration() {
component.addOperation('EnvironmentVariable',
[
"cqtdeployer",
"\"" + targetDir + "\\" + VERSION + "\\cqtdeployer.bat\""
targetDir + "\\" + VERSION + "\\cqtdeployer.bat"
]
)

component.addOperation('EnvironmentVariable',
[
"cqtDir",
"\"" + targetDir + "\\" + VERSION + "\\\""
targetDir + "\\" + VERSION + "\\"
]
)

Expand Down
2 changes: 1 addition & 1 deletion test.pri
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ contains(QMAKE_HOST.os, Linux):{
}

DEPLOYER=cqtdeployer
win32:DEPLOYER=$$(cqtdeployer)
win32:DEPLOYER="$$(cqtdeployer)"

test.commands =
deployTest.commands = $$DEPLOYER -bin $$exec clear -qmake $$QMAKE_BIN -targetDir $$PWD/deployTests -libDir $$PWD -recursiveDepth 4
Expand Down

0 comments on commit e522d1a

Please sign in to comment.