Booleans are True/False in azure pipelines

We need lower case
This commit is contained in:
Luis Ángel San Martín 2019-09-18 23:26:55 +02:00
parent fa874ddcd1
commit 122806b0e3

View File

@ -82,7 +82,7 @@ jobs:
- script: |
cd $(Build.SourcesDirectory)
VERSION="$(cat common/yacreader_global.h | grep '#define VERSION "' | tr -d '#define VERSION' | tr -d '"' )"
SKIP_CODESIGN=$(System.PullRequest.IsFork)
SKIP_CODESIGN="$(tr [A-Z] [a-z] <<< "$(System.PullRequest.IsFork)")"
./compileOSX.sh $VERSION $(Build.BuildNumber) $SKIP_CODESIGN
displayName: 'Build'
- task: CopyFiles@2