@@ -24,17 +24,13 @@ matrix:
2424 fast_finish : true
2525
2626cache :
27- - composer.phar -> appveyor.xml
27+ - composer.phar -> composer.json
28+ - node_modules -> package.json
2829 - ocular.phar -> appveyor.xml
2930 - c:\projects\wmi-scripting\vendor
3031 - c:\tools\%PHP_DIR%
3132
3233install :
33- - ps : $fileContent = "-----BEGIN RSA PRIVATE KEY-----`n"
34- - ps : $fileContent += $env:priv_key.Replace(' ', "`n")
35- - ps : $fileContent += "`n-----END RSA PRIVATE KEY-----`n"
36- - ps : Set-Content $env:userprofile\.ssh\id_rsa $fileContent
37- - git submodule update --init --recursive
3834 - SET PATH=c:\tools\%PHP_DIR%;%PATH%
3935 - IF NOT EXIST c:\tools\%PHP_DIR%\php.exe (
4036 cinst -y php -i --version %PHP_VERSION% &&
@@ -57,6 +53,11 @@ install:
5753
5854 - cd c:\projects\wmi-scripting
5955
56+ - ps : $fileContent = "-----BEGIN RSA PRIVATE KEY-----`n"
57+ - ps : $fileContent += $env:priv_key.Replace(' ', "`n")
58+ - ps : $fileContent += "`n-----END RSA PRIVATE KEY-----`n"
59+ - ps : Set-Content $env:userprofile\.ssh\id_rsa $fileContent
60+ - git submodule update --init --recursive
6061 - git config --global user.email "%GIT_EMAIL%"
6162 - git config --global user.name "%GIT_EMAIL%"
6263 - yarn install
0 commit comments