Merge pull request #3725 from joshuaboniface/fix-ci-docker

Flip quoting in variable set command

(cherry picked from commit 8c1dab146c0b8d380a2cff438e414d479780485a)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Joshua M. Boniface 2020-07-28 20:01:25 -04:00
parent 35d3ad1a55
commit b1250e2e83

View File

@ -85,7 +85,7 @@ jobs:
value: 0.0.0 value: 0.0.0
steps: steps:
- script: echo '##vso[task.setvariable variable=JellyfinVersion]$( awk -F "/" "{ print $NF }" <<<"$(Build.SourceBranch)" | sed "s/^v//" )' - script: echo "##vso[task.setvariable variable=JellyfinVersion]$( awk -F '/' '{ print $NF }' <<<'$(Build.SourceBranch)' | sed 's/^v//' )"
displayName: Set release version (stable) displayName: Set release version (stable)
condition: startsWith(variables['Build.SourceBranch'], 'refs/tags') condition: startsWith(variables['Build.SourceBranch'], 'refs/tags')