<< Back to previous view |
![]() |
[QB-533] Garbage characters when passing in variables in Shell/Batch Command
|
|
Status: | Resolved |
Project: | QuickBuild |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | Rickey Nguyen | Assigned To: | Robin Shen |
Resolution: | Won't Fix | Votes: | 0 |
Remaining Estimate: | Unknown | Time Spent: | Unknown |
Original Estimate: | Unknown | ||
Environment: | Windows XP |
Description |
Step: Shell/Batch Command
Command: c:/Scritps/myscript.bat "${build.publishDir}/artifacts/${build.version}/myapp.jar" Publish Dir is /server/folder1/folder2/folder3 QB is passing in as: "\serverfolder1folder2 lder3uildsÚ62/artifacts/1.x.16/myapp.jar" |
Comments |
Comment by Robin Shen [ 19/Feb/10 01:07 AM ] |
Please remove the surrounding quotation marks of the param passed to myscript.bat like below:
c:/Scritps/myscript.bat ${build.publishDir}/artifacts/${build.version}/myapp.jar |