Flip quoting in variable set command (cherry picked from commit 8c1dab146c0b8d380a2cff438e414d479780485a) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
@@ -85,7 +85,7 @@ jobs:
value: 0.0.0
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)
condition: startsWith(variables['Build.SourceBranch'], 'refs/tags')