We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6c341b commit 209e43bCopy full SHA for 209e43b
1 file changed
.azure_templates/t-task-extend-download-binaries.yml
@@ -24,7 +24,7 @@ steps:
24
curl -Lk -o ${{package.download_location}} \
25
${{package.url}}
26
27
- if [[ ! -z ${{package.unpack_location}} ]]; then
+ if [[ ! -z "${{package.unpack_location}}" ]]; then
28
echo Unzipping to ${{package.unpack_location}}
29
unzip -qq -d ${{package.unpack_location}} ${{package.download_location}}
30
chmod -R u+x ${{package.unpack_location}}
@@ -33,7 +33,7 @@ steps:
33
chmod -R u+x ${{package.download_location}}
34
fi
35
36
- if [[ ! -z ${{package.addToPath}} ]]; then
+ if [[ ! -z "${{package.addToPath}}" ]]; then
37
echo "Add package to path"
38
echo "##vso[task.prependpath]${{package.addToPath}}"
39
0 commit comments