diff options
author | Richard Levitte <levitte@openssl.org> | 2018-05-14 09:28:52 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-05-14 17:51:48 +0200 |
commit | 986caf9e34fd60366a5b3711bb12e239e43a2431 (patch) | |
tree | d125f6892d6463bd1ae53aeac252f4cfa901f25c /appveyor.yml | |
parent | Link in passphrase-encoding(7) in relevant documentation (diff) | |
download | openssl-986caf9e34fd60366a5b3711bb12e239e43a2431.tar.xz openssl-986caf9e34fd60366a5b3711bb12e239e43a2431.zip |
CI config: no need to make both install and install_docs
'install' depends on 'install_docs', so making the latter explicit is
a waste.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6250)
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 3b66f0defb..24966c0faa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -61,6 +61,6 @@ test_script: - ps: >- if ($env:EXTENDED_TESTS) { mkdir ..\_install - cmd /c "nmake install install_docs DESTDIR=..\_install 2>&1" + cmd /c "nmake install DESTDIR=..\_install 2>&1" } - cd .. |