From d7768a5e941ca21075a857c008eebf31eecd0954 Mon Sep 17 00:00:00 2001 From: Sota Ogo Date: Wed, 8 Dec 2021 22:13:33 -0800 Subject: [PATCH] Unbreak analyze_pr (#32724) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/32724 Changelog: [internal] Fix analyze_pr which was getting stuck at apt-get install openssl ca-certificates Added -y so that it will install openssl without asking Y/n question. ``` The following packages will be upgraded: openssl 1 upgraded, 0 newly installed, 0 to remove and 8 not upgraded. Need to get 620 kB of archives. After this operation, 1024 B disk space will be freed. Do you want to continue? [Y/n] ``` Reviewed By: TheSavior Differential Revision: D32977991 fbshipit-source-id: 6a2e88f7fe61061fd5c18fc8cb28a3b9bfeedaf0 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ec41aefeb..a219b03fb0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -236,7 +236,7 @@ jobs: command: | curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - apt update && apt install -y shellcheck jq - apt-get install openssl ca-certificates + apt-get -y install openssl ca-certificates update-ca-certificates curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - apt update && apt install -y shellcheck jq