mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
Use not instead of coalesce
This commit is contained in:
parent
4a941efd08
commit
71fbcb53a1
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ steps:
|
|||
inputs:
|
||||
versionSpec: $(PYTHON_VERSION)
|
||||
addToPath: true
|
||||
condition: ne(coalesce(variables['PYTHON_VERSION'], 'UNSPECIFIED'), 'UNSPECIFIED')
|
||||
condition: not(variables['PYTHON_VERSION'])
|
||||
- bash: |
|
||||
python tools/pip_install.py -I tox virtualenv
|
||||
displayName: Install runtime dependencies
|
||||
|
|
|
|||
Loading…
Reference in a new issue