diff options
author | 2019-01-25 11:22:07 +0100 | |
---|---|---|
committer | 2019-01-25 11:22:07 +0100 | |
commit | 934d1300a0edef861c467928248ffa5d146fdd35 (patch) | |
tree | 405d41889735e8ec60d2eccf88a29e890a57b7e9 /INSTALL/tasks.d | |
parent | 789089b5d3e734215c31ec380e3a92fd1481e917 (diff) |
Fix issue on GPG check when installing files for jekyll
Bug-AGL: SPEC-979
Change-Id: I65911fa0e2bcd31944601507a8f008e0ea777515
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'INSTALL/tasks.d')
-rw-r--r-- | INSTALL/tasks.d/70_doc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/INSTALL/tasks.d/70_doc b/INSTALL/tasks.d/70_doc index 4c658fe..a3bd61f 100644 --- a/INSTALL/tasks.d/70_doc +++ b/INSTALL/tasks.d/70_doc @@ -11,6 +11,7 @@ if [[ -z $(which node) ]]; then fi # tools used to generate developer website (https://github.com/automotive-grade-linux/docs-agl) -curl -v --connect-timeout 60 --retry 3 -sSL https://rvm.io/mpapis.asc | gpg --import --no-tty - \ +curl -v --connect-timeout 60 --retry 3 -sSL https://rvm.io/mpapis.asc | gpg --import --no-tty - \ + && curl -v --connect-timeout 60 --retry 3 -sSL https://rvm.io/pkuczynski.asc | gpg --import --no-tty - \ && curl -v --connect-timeout 60 --retry 3 -sSL https://get.rvm.io | bash -s stable --ruby --gems=jekyll |