diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-07-28 20:01:25 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2020-08-02 20:35:31 -0400 |
| commit | b1250e2e8349040fba9a45883898afa3fbd8c35e (patch) | |
| tree | 1e65a159d2ad1487a0a9501eac9620d81b029163 | |
| parent | 35d3ad1a5584b9d890059e74539b21bd85e9cdeb (diff) | |
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>
| -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 64d40e7f5..1677f71c7 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') |
