From f3fabb57cfabe6b52fabe958eeb2fd5459b6dcf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Fri, 26 Mar 2021 13:24:02 +0100 Subject: [PATCH] doc: add missing cleanup step in OpenSSL upgrade Refs: https://github.com/nodejs/node/pull/37916 PR-URL: https://github.com/nodejs/node/pull/37927 Reviewed-By: Richard Lau Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Jiawen Geng --- doc/guides/maintaining-openssl.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/guides/maintaining-openssl.md b/doc/guides/maintaining-openssl.md index 510568c2c9db7f..32b38430ce6c01 100644 --- a/doc/guides/maintaining-openssl.md +++ b/doc/guides/maintaining-openssl.md @@ -65,6 +65,7 @@ release). % cd ../node/deps/openssl % rm -rf openssl % cp -R ../../../openssl openssl +% rm -rf openssl/.git* openssl/.travis* % git add --all openssl % git commit openssl ``` @@ -72,7 +73,7 @@ release). The commit message can be written as (with the openssl version set to the relevant value): ```text -deps: upgrade openssl sources to 1.1.0h +deps: upgrade openssl sources to OpenSSL_1_1_1j This updates all sources in deps/openssl/openssl by: $ git clone https://github.com/quictls/openssl @@ -81,6 +82,7 @@ This updates all sources in deps/openssl/openssl by: $ cd ../node/deps/openssl $ rm -rf openssl $ cp -R ../openssl openssl + $ rm -rf openssl/.git* openssl/.travis* $ git add --all openssl $ git commit openssl ```