We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nodejs.keys
1 parent c08988f commit fc4d9bdCopy full SHA for fc4d9bd
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 |\
+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
10
echo "$KEYRING_URL" > keys/nodejs.url
0 commit comments