Skip to content

Commit

Permalink
Deploy: Reorder args
Browse files Browse the repository at this point in the history
  • Loading branch information
jaagut committed Jan 23, 2024
1 parent 4baf290 commit a944ab9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"Rhoban",
"robocup",
"RoboCup",
"rory",
"rosbag",
"rosbags",
"rosdep",
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy/deploy_robots.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ def _parse_arguments(self) -> argparse.Namespace:

# Optional arguments
parser.add_argument("-p", "--package", default="", help="Synchronize and build only the given ROS package")
parser.add_argument("-u", "--user", default="bitbots", help="The user to connect to the target machines with")
parser.add_argument("-w", "--workspace", default="~/colcon_ws", help="The workspace to deploy to")
parser.add_argument(
"--clean",
action="store_true",
Expand All @@ -110,6 +108,8 @@ def _parse_arguments(self) -> argparse.Namespace:
)
parser.add_argument("-v", "--verbose", action="count", default=0, help="More output")
parser.add_argument("-q", "--quiet", action="count", default=0, help="Less output")
parser.add_argument("-u", "--user", default="bitbots", help="The user to connect to the target machines with")
parser.add_argument("-w", "--workspace", default="~/colcon_ws", help="The workspace to deploy to")

args = parser.parse_args()

Expand Down

0 comments on commit a944ab9

Please sign in to comment.