wasmer/.azure/install-innosetup.yml

19 lines
447 B
YAML
Raw Normal View History

2019-08-26 02:32:34 +00:00
# This template installs InnoSetup
steps:
2019-08-29 00:38:01 +00:00
- bash: |
set -ex
if [ -x "`command -v iscc`" ]; then
echo `command -v iscc` `iscc -?` installed
else
choco install innosetup -y
fi
2019-08-26 02:32:34 +00:00
displayName: Install InnoSetup - Windows
condition: eq(variables['Agent.OS'], 'Windows_NT')
# - bash: |
# set -ex
# iscc
# displayName: InnoSetup
# condition: eq(variables['Agent.OS'], 'Windows_NT')