You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 3, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: bin/sm
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ def _process_command():
45
45
parser.add_argument('--checkports', action='store_true', help='Validates default ports for duplicates - returns code 1 if duplicates exist')
46
46
parser.add_argument('--printconfig', type=str, nargs='*', help='Print the config for a given list of services, if empty, show all')
47
47
parser.add_argument('-c', '--config', type=str, help='Sets the configuration directory location, defaults to $WORKSPACE/service-manager-config')
48
-
parser.add_argument('--getdascode', action='store_true', help='Checkout all of the code if you haven\'t already')
48
+
parser.add_argument('--getdascode', nargs='*', help='With no arguements, checks out all services if you haven\'t already. Else checks out just the specified service or profile.')
49
49
parser.add_argument('--showcmdfor', type=str, nargs='*', help='Shows how sm will try start the service')
50
50
parser.add_argument('-l', '--logs', type=str, help='View the logs associated with the service').completer=ServiceCompleter
51
51
@@ -133,8 +133,11 @@ def _process_command():
133
133
" in services: "+service_name+" and "+ports_used[service["defaultAdminPort"]])
0 commit comments