We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nodejs.keys
1 parent c63cbda commit c08988fCopy full SHA for c08988f
update-keys.sh
@@ -5,6 +5,6 @@ TMP_DIR=$(mktemp -d)
5
trap 'rm -r "$TMP_DIR"; trap - EXIT; exit' EXIT INT HUP
6
(cd "$TMP_DIR" && curl -fsSO "$KEYRING_URL" && sha256sum pubring.kbx) > keys/nodejs.shasum
7
8
-gpg --no-default-keyring --keyring "$TMP_DIR/pubring.kbx" --list-keys --with-colons \
9
-| awk -F: '{ if (print_next_line) { print $10; print_next_line=0; } else if ($1=="pub") print_next_line=1; }' > keys/nodejs.keys
+gpg --no-default-keyring --keyring "$TMP_DIR/pubring.kbx" --list-keys --with-colons |\
+ awk -F: '{ if (print_next_line) { print $10; print_next_line=0; } else if ($1=="pub") print_next_line=1; }' > keys/nodejs.keys
10
echo "$KEYRING_URL" > keys/nodejs.url
0 commit comments