Skip to content

Commit

Permalink
Taskfile.yml: Add 'help' task for convenience
Browse files Browse the repository at this point in the history
Suggested by @algen-al and @silkeh.

Signed-off-by: Rune Morling <[email protected]>
  • Loading branch information
ermo committed Oct 1, 2023
1 parent 9780618 commit 1f7a2fd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions common/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ vars:
sh: if [ -f "{{ .USER_WORKING_DIR }}/package.yml" ]; then echo "pspec_x86_64.xml"; else echo "pspec.xml"; fi;

tasks:
# Ensure people new to go-task and used to 'make help' have an easier time
help:
desc: Show how to list available tasks
cmds:
- |
echo "Use 'go-task -l/--list' to list available tasks."
# Utility tasks, mainly for precondition checks
package-file:
internal: true
Expand Down

0 comments on commit 1f7a2fd

Please sign in to comment.