We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e1c116 commit dd537ccCopy full SHA for dd537cc
.cruft.json
@@ -1,6 +1,6 @@
1
{
2
"template": "https://github.com/UrbanMachine/create-ros-app.git",
3
- "commit": "340d2e1a720c27568b2729fa4ae27a1a28a08335",
+ "commit": "7697b9d1edf4d2b27d2bc9d3095fa893a8d92497",
4
"checkout": null,
5
"context": {
6
"cookiecutter": {
docker/launch
@@ -27,7 +27,8 @@ set -o nounset
27
function usage {
28
echo "Usage: docker/launch [--no-pull] <launch-profile>" >&2
29
echo "Available launch profiles are:" >&2
30
- find launch-profiles/ -maxdepth 1 -type d >&2
+ # shellcheck disable=SC2012
31
+ ls -1 launch-profiles/ | sed 's/^/ - /' >&2
32
echo "" >&2
33
echo "Read more about 'launch-profiles' under 'docs/about_template.md'" >&2
34
exit 1
0 commit comments