Merge pull request #2225 from 21pages/portable-service

portable-service: enable quick support by rename as xxxqs.exe
This commit is contained in:
RustDesk 2022-11-19 13:53:21 +08:00 committed by GitHub
commit ac07db76cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 49 additions and 46 deletions

View file

@ -81,11 +81,6 @@ def make_parser():
action='store_true',
help='Build windows portable'
)
parser.add_argument(
'--quick_start',
action='store_true',
help='Windows quick start portable'
)
parser.add_argument(
'--flatpak',
action='store_true',
@ -194,8 +189,6 @@ def get_features(args):
features = ['inline']
if windows:
features.extend(get_rc_features(args))
if args.quick_start:
features.append('quick_start')
if args.hwcodec:
features.append('hwcodec')
if args.flutter: