clean postinstall

This commit is contained in:
Joao Moreno 2019-07-03 11:25:09 +02:00
parent 674d8a5449
commit 9e4a7e672c
5 changed files with 0 additions and 13 deletions

View file

@ -56,9 +56,6 @@ steps:
- script: |
set -e
yarn postinstall
(cd build && yarn postinstall)
(cd extensions && yarn postinstall)
(cd test/smoke && yarn postinstall)
displayName: Run postinstall scripts
condition: and(succeeded(), eq(variables['CacheRestored'], 'true'))

View file

@ -65,8 +65,6 @@ steps:
- script: |
set -e
yarn postinstall
(cd build && yarn postinstall)
(cd extensions && yarn postinstall)
displayName: Run postinstall scripts
condition: and(succeeded(), eq(variables['CacheRestored'], 'true'))

View file

@ -65,8 +65,6 @@ steps:
- script: |
set -e
yarn postinstall
(cd build && yarn postinstall)
(cd extensions && yarn postinstall)
displayName: Run postinstall scripts
condition: and(succeeded(), eq(variables['CacheRestored'], 'true'))

View file

@ -57,9 +57,6 @@ steps:
- script: |
set -e
yarn postinstall
(cd build && yarn postinstall)
(cd extensions && yarn postinstall)
(cd test/smoke && yarn postinstall)
displayName: Run postinstall scripts
condition: and(succeeded(), eq(variables['CacheRestored'], 'true'))

View file

@ -60,9 +60,6 @@ steps:
. build/azure-pipelines/win32/exec.ps1
$ErrorActionPreference = "Stop"
exec { yarn postinstall }
exec { pushd build ; yarn postinstall ; popd }
exec { pushd extensions ; yarn postinstall ; popd }
exec { pushd test\smoke ; yarn postinstall ; popd }
displayName: Run postinstall scripts
condition: and(succeeded(), eq(variables['CacheRestored'], 'true'))