Skip to content

Commit cf5673a

Browse files
committed
fix release-files missed to define an empty confirmationQuestion
1 parent 7cf632c commit cf5673a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/releasing/release-files.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ function releaseFiles() {
162162
mkdir "$gpgDir"
163163
chmod 700 "$gpgDir"
164164

165-
importGpgKey "$gpgDir" "$gtDir/signing-key.public.asc" || die "was not able to import the signing-key, cannot release"
165+
# we don't specify confirmationQuestion (i.e. empty) which means we trust it without consent
166+
importGpgKey "$gpgDir" "$gtDir/signing-key.public.asc" "" || die "was not able to import the signing-key, cannot release"
166167

167168
local script
168169
"$release_files_findForSigning" -type f -not -name "*.sig" -print0 |

0 commit comments

Comments
 (0)