From e6ea8f55b0e8f37637263c874fcc553813a8a1ff Mon Sep 17 00:00:00 2001 From: Pallav Gupta Date: Wed, 23 Jun 2021 10:56:53 -0700 Subject: [PATCH] fix developer guide sops commands copy When we copy sops commands from github dev guide, it also includes '-' which makes commands incorrect when we past in terminal. So removed it from sops commands. Change-Id: I7da808606ce4a9196a1ecd6f0dc503c8aced4e76 --- docs/source/developers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/developers.md b/docs/source/developers.md index 4b085ef70..735caa176 100644 --- a/docs/source/developers.md +++ b/docs/source/developers.md @@ -201,9 +201,9 @@ Make sure the following conditions are met: 1. ./tools/gate/00_setup.sh 5. Download test security key and add it to environment variable. ```sh - - curl -fsSL -o /tmp/key.asc https://raw.githubusercontent.com/mozilla/sops/master/pgp/sops_functional_tests_key.asc - - export SOPS_IMPORT_PGP="$(cat /tmp/key.asc)" - - export SOPS_PGP_FP="FBC7B9E2A4F9289AC0C1D4843D16CEE4A27381B4" + curl -fsSL -o /tmp/key.asc https://raw.githubusercontent.com/mozilla/sops/master/pgp/sops_functional_tests_key.asc + export SOPS_IMPORT_PGP="$(cat /tmp/key.asc)" + export SOPS_PGP_FP="FBC7B9E2A4F9289AC0C1D4843D16CEE4A27381B4" ``` 6. Execute the following scripts one by one 1. ./tools/gate/10_build_gate.sh