Skip to content

Commit ab45cf2

Browse files
authored
[embuilder] Add -v/-f as short form of --verbose/--force (#25379)
1 parent 24fcd26 commit ab45cf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

embuilder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,9 @@ def main():
208208
parser.add_argument('--lto=thin', dest='lto', action='store_const', const='thin', help='build bitcode object for ThinLTO')
209209
parser.add_argument('--pic', action='store_true',
210210
help='build relocatable objects for suitable for dynamic linking')
211-
parser.add_argument('--force', action='store_true',
211+
parser.add_argument('-f', '--force', action='store_true',
212212
help='force rebuild of target (by removing it first)')
213-
parser.add_argument('--verbose', action='store_true',
213+
parser.add_argument('-v', '--verbose', action='store_true',
214214
help='show build commands')
215215
parser.add_argument('--wasm64', action='store_true',
216216
help='use wasm64 architecture')

0 commit comments

Comments
 (0)