-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: added the abilty to add commands through the command line and test these * fix: improved testing and cli output for adding commands * feat: now uses single command whenever you expect it to * feat: now prints warning and doesnt quote if its a single argument * feat: renamed command to task * feat: accepts 1..n args for specific arguments * feat: added to docs * feat: task add remove docs
- Loading branch information
Showing
20 changed files
with
716 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Bas Zalmstra <[email protected]>"] | |
channels = ["conda-forge"] | ||
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"] | ||
|
||
[commands] | ||
[tasks] | ||
# Configures CMake | ||
configure = { cmd = [ | ||
"cmake", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Wolf Vollprecht <[email protected]>"] | |
channels = ["conda-forge"] | ||
platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"] | ||
|
||
[commands] | ||
[tasks] | ||
start = "python -m flask run --port=5050" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Ruben Arts <[email protected]>"] | |
channels = ["conda-forge"] | ||
platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"] | ||
|
||
[commands] | ||
[tasks] | ||
start = "python webcam_capture.py" | ||
calibrate = "python calibrate.py" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Ruben Arts <[email protected]>"] | |
channels = ["conda-forge", "robostack-staging"] | ||
platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"] | ||
|
||
[commands] | ||
[tasks] | ||
start = "ros2 run turtlesim turtlesim_node" | ||
teleop = "ros2 run turtlesim turtle_teleop_key" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.