diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-07-28 20:01:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-28 20:01:25 -0400 |
| commit | 8c1dab146c0b8d380a2cff438e414d479780485a (patch) | |
| tree | 885e097372b0ba103ab9ad2019cf5c43626a5705 | |
| parent | dc0f1788f45be44ce1060ac257f12defef37f0ca (diff) | |
| parent | 2d8d3ba826f62f368e0f6303165ff62db5856645 (diff) | |
Merge pull request #3725 from joshuaboniface/fix-ci-docker
Flip quoting in variable set command
| -rw-r--r-- | .ci/azure-pipelines-package.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/azure-pipelines-package.yml b/.ci/azure-pipelines-package.yml index 64d40e7f5f..1677f71c75 100644 --- a/.ci/azure-pipelines-package.yml +++ b/.ci/azure-pipelines-package.yml @@ -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') |
