diff options
author | sumneko <sumneko@hotmail.com> | 2019-06-11 10:15:20 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-06-11 10:15:20 +0800 |
commit | ef59c183fab99c477e8e5ff00a963b54d3dbdd90 (patch) | |
tree | 18632f9edb3db7537542a897838031feda70cce0 | |
parent | b8d457997ea5f6d4a9876bbc6d3ecf75c74d9586 (diff) | |
download | lua-language-server-ef59c183fab99c477e8e5ff00a963b54d3dbdd90.zip |
也许能用bash?
-rw-r--r-- | azure-pipelines.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 41f72cd5..b719841f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,16 +7,16 @@ jobs: name: Hosted VS2017 steps: - - script: | + - bash: | git submodule update --init --recursive displayName: '拉取子模块' - - script: | + - bash: | cd 3rd/luamake tools/ninja -f ninja/msvc.ninja cd ../.. displayName: 'PreCompile' - - script: | - 3rd/luamake/luamake.exe rebuild + - bash: | + ./3rd/luamake/luamake rebuild displayName: 'Compile' - job: macos |