From 3dfc5f2fb0327eefdbda5227325b0feb0d8a8a75 Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Thu, 21 Mar 2019 15:58:44 +0000 Subject: [PATCH] Add proper quoting for CI config. --- azure-pipelines.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4eb6b32..e04fd86 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,9 +18,10 @@ jobs: BuildType: Release steps: - script: | - sudo add-apt-repository deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-8 main + sudo add-apt-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-8 main" sudo apt-get update - sudo apt-get install -y ninja-build clang-8 + sudo apt-get install -y ninja-build + sudo apt-get install -y clang-8 - task: CMake@1 inputs: