Skip to content

Commit c08988f

Browse files
committed
fixup! squash! move back to nodejs.keys
1 parent c63cbda commit c08988f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

update-keys.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ TMP_DIR=$(mktemp -d)
55
trap 'rm -r "$TMP_DIR"; trap - EXIT; exit' EXIT INT HUP
66
(cd "$TMP_DIR" && curl -fsSO "$KEYRING_URL" && sha256sum pubring.kbx) > keys/nodejs.shasum
77

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
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
1010
echo "$KEYRING_URL" > keys/nodejs.url

0 commit comments

Comments
 (0)