diff options
| author | ruki <[email protected]> | 2017-09-15 00:39:32 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-09-14 21:57:17 +0800 |
| commit | 1dbd8b452a46d9912c9dbb8fb23c2f475ca008fb (patch) | |
| tree | d2e6a13a44099d39bf2a42a1ab2a3b640630ee9b | |
| parent | 0c68abd2c91a9cdd7c2cd8f82fc8a0206e77c5f5 (diff) | |
fix appveyor again
| -rw-r--r-- | .appveyor.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 3b87799b6..81afa1a5a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,9 +24,10 @@ install: build_script: - ps: Invoke-Expression (Get-Content scripts\get.ps1 | Out-String) - cmd: xmake lua versioninfo - - cmd: if %platform%==Win64 xmake f -a x64 -P core - - cmd: xmake -P core - - cmd: xmake install -P core -o core\build --prefix= + - cmd: cd core + - cmd: if %platform%==Win64 xmake f -a x64 + - cmd: xmake install -o build --prefix= + - cmd: cd .. - cmd: set XMAKE_PROGRAM_DIR=%cd%\xmake - cmd: core\build\bin\xmake lua versioninfo - ps: Write-Output "require('luacov.runner').init({['statsfile']='$PWD/luacov.stats.out',['reportfile']='$PWD/luacov.report.out'})".replace('\','/') | Out-File tmp |
