diff options
author | bloodstalker <thabogre@gmail.com> | 2019-11-28 07:36:13 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2019-11-28 07:36:13 +0000 |
commit | 5b43c842191d18e6ef353191abe0e1ef730b5eb4 (patch) | |
tree | 7b276bfe8c876911638b982ffb8d4fcc36ad6f0a | |
parent | fix (diff) | |
download | cgrep-5b43c842191d18e6ef353191abe0e1ef730b5eb4.tar.gz cgrep-5b43c842191d18e6ef353191abe0e1ef730b5eb4.zip |
fix
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index e6b408a..eb6e739 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,8 +12,8 @@ install: - '%CYG_ROOT%\%CYG_SETUP% -gnqINDo -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P make,libclang-devel,libllvm-devel,clang,llvm' - '%CYG_ROOT%\bin\cygcheck -dc cygwin' - 'cd %APPVEYOR_BUILD_FOLDER%' - - 'git submodule --init' - - 'git submodule --update' + - 'git submodule init' + - 'git submodule update' build_script: - '%CYG_ROOT%\bin\bash -lc "make -C $APPVEYOR_BUILD_FOLDER"' |