Skip to content

Commit

Permalink
整理格式
Browse files Browse the repository at this point in the history
  • Loading branch information
mysterywolf committed Aug 13, 2022
1 parent dae28d1 commit f753455
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cmds/cmd_package/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
from .cmd_package_printenv import package_print_env, package_print_help
from .cmd_package_list import list_packages
from .cmd_package_wizard import package_wizard
from .cmd_package_upgrade import package_upgrade
from .cmd_package_update import package_update
from .cmd_package_upgrade import package_upgrade
from .cmd_package_upgrade import package_upgrade_modules

def run_env_cmd(args):
Expand Down Expand Up @@ -67,8 +67,8 @@ def add_parser(sub):
default=False,
dest='package_update')

parser.add_argument('--force-update', '--update-force',
help='force update and clean packages, install or remove packages by settings in menuconfig',
parser.add_argument('--update-force', '--force-update',
help='forcely update and clean packages, install or remove packages by settings in menuconfig',
action='store_true',
default=False,
dest='package_update_force')
Expand All @@ -86,13 +86,13 @@ def add_parser(sub):
dest='package_create')

parser.add_argument('--upgrade',
help='upgrade local packages list and ENV scripts from git repo',
help='upgrade local packages index and Env scripts from git repository',
action='store_true',
default=False,
dest='package_upgrade')

parser.add_argument('--force-upgrade', '--upgrade-force',
help='force upgrade packages, install or remove the packages by your settings in menuconfig',
parser.add_argument('--upgrade-force', '--force-upgrade',
help='forcely upgrade local packages index and Env scripts from git repository',
action='store_true',
default=False,
dest='package_upgrade_force')
Expand Down

0 comments on commit f753455

Please sign in to comment.