Skip to content

Commit 209e43b

Browse files
committed
Adding pipeline for flyway
1 parent b6c341b commit 209e43b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.azure_templates/t-task-extend-download-binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ steps:
2424
curl -Lk -o ${{package.download_location}} \
2525
${{package.url}}
2626
27-
if [[ ! -z ${{package.unpack_location}} ]]; then
27+
if [[ ! -z "${{package.unpack_location}}" ]]; then
2828
echo Unzipping to ${{package.unpack_location}}
2929
unzip -qq -d ${{package.unpack_location}} ${{package.download_location}}
3030
chmod -R u+x ${{package.unpack_location}}
@@ -33,7 +33,7 @@ steps:
3333
chmod -R u+x ${{package.download_location}}
3434
fi
3535
36-
if [[ ! -z ${{package.addToPath}} ]]; then
36+
if [[ ! -z "${{package.addToPath}}" ]]; then
3737
echo "Add package to path"
3838
echo "##vso[task.prependpath]${{package.addToPath}}"
3939
fi

0 commit comments

Comments
 (0)