소스 검색

Force recursive clone in appveyor

Nick Babcock 7 년 전
부모
커밋
2e9e93d196
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      appveyor.yml

+ 7 - 1
appveyor.yml

@@ -1 +1,7 @@
-image: 'Visual Studio 2017'
+image: 'Visual Studio 2017'
+clone_script:
+- cmd: >-
+    git clone -q --branch=%APPVEYOR_REPO_BRANCH% https://github.com/%APPVEYOR_REPO_NAME%.git %APPVEYOR_BUILD_FOLDER%
+    cd %APPVEYOR_BUILD_FOLDER%
+    git checkout -qf %APPVEYOR_REPO_COMMIT%
+    git submodule update --init --recursive