Commit 41dd8ee0b4c0b8b2b743c26460548dbc53065d44
Fix arg typo
Stefano Martinelli committed on 11/14/2019, 12:28:34 PMParent: c2a27e45092bcbb6fc2166d000815dd8613d0caa
Files changed
verify-merge.py | changed |
verify-merge.py | ||
---|---|---|
@@ -38,9 +38,9 @@ | ||
38 | 38 | global args, workdir |
39 | 39 | parser = argparse.ArgumentParser(usage='%(prog)s [options] version', description='Use this script before merging a pull request to the gitian.sigs repository and to verify the signature of existing gitian assert files and gitian assert files in specific pull requests') |
40 | 40 | parser.add_argument('-p', '--pull_id', dest='pull_id', help='Github Pull request id to check') |
41 | 41 | parser.add_argument('--monero-dir', dest='monero_dir', default='../monero', help='System Path to the monero repository, e.g. /home/user/monero') |
42 | - parser.add_argument('--gitiian-builder-dir', dest='gitian_builder_dir', default='../gitian-builder', help='System Path to the gitian-builder repository, e.g. /home/user/gitian-builder') | |
42 | + parser.add_argument('--gitian-builder-dir', dest='gitian_builder_dir', default='../gitian-builder', help='System Path to the gitian-builder repository, e.g. /home/user/gitian-builder') | |
43 | 43 | parser.add_argument('-r', '--remote', dest='remote', default='upstream', help='git remote repository') |
44 | 44 | parser.add_argument('-t', '--target-branch', dest='target_branch', default='master', help='Remote repository merge into branch') |
45 | 45 | parser.add_argument('-m', '--merge', action='store_true', dest='merge', help='Merge the given pull request id') |
46 | 46 | parser.add_argument('-k', '--refresh-keys', action='store_true', dest='refresh_keys', help='refresh all pgp public keys that are currently in the gpg keyring.') |
Built with git-ssb-web