Skip to content

Commit d99b4d2

Browse files
committed
Release script: Fix wrong argument for string formatting
1 parent 57aafcf commit d99b4d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev-tools/build_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def build_release(run_tests=False, dry_run=True, cpus=1, bwc_version=None):
247247
print('Running Backwards compatibilty tests against version [%s]' % (bwc_version))
248248
run_mvn('clean', 'test -Dtests.filter=@backwards -Dtests.bwc.version=%s -Dtests.bwc=true -Dtests.jvms=1' % bwc_version)
249249
run_mvn('clean test-compile -Dforbidden.test.signatures="org.apache.lucene.util.LuceneTestCase\$AwaitsFix @ Please fix all bugs before release"')
250-
gpg_args = '-Dgpg.key="%s" -Dgpg.passphrase="%s" -Ddeb.sign=true' % (target, env.get('GPG_KEY_ID'), env.get('GPG_PASSPHRASE'))
250+
gpg_args = '-Dgpg.key="%s" -Dgpg.passphrase="%s" -Ddeb.sign=true' % (env.get('GPG_KEY_ID'), env.get('GPG_PASSPHRASE'))
251251
if env.get('GPG_KEYRING'):
252252
gpg_args += ' -Dgpg.keyring="%s"' % env.get('GPG_KEYRING')
253253
run_mvn('clean %s -DskipTests %s' % (target, gpg_args))

0 commit comments

Comments
 (0)