Skip to content

Commit 4f57b46

Browse files
uncrustify: add missing short argument for build
1 parent c62c1a5 commit 4f57b46

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

uncstrap/uncstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def main():
198198

199199
parser.add_argument('--custom-config-path', type=str, dest='custom_config_path', action='store', help='Path to custom uncrustify configuration.')
200200
group.add_argument('exclude_list_path', nargs="?", type=str, help='Path to uncstrap exclude list.')
201-
group.add_argument('--build', dest='build', action='store_true', help='Build uncrustify binary.')
201+
group.add_argument('-b', '--build', dest='build', action='store_true', help='Build uncrustify binary.')
202202
parser.set_defaults(build=False)
203203

204204
args = parser.parse_args()

0 commit comments

Comments
 (0)