From 03ca5d0d74b6daadacb5783be9a66a6b897c85ea Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 18 May 2025 09:30:40 -0700 Subject: [PATCH] Remove unused task Previously, the `npm:validate` task called the `utility:mktemp-folder` task. That call was eliminated through some recent refactoring, but the now `utility:mktemp-folder` task was not removed at that time. The unused task serves no purpose and only makes the taskfile more difficult to understand and maintain. So the unused task is hereby removed. --- Taskfile.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 0101354..fb4e1ff 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -392,17 +392,6 @@ tasks: vars: RAW_PATH: "{{.RAW_PATH}}" - # Make a temporary folder named according to the passed TEMPLATE variable and print the path passed to stdout - # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/windows-task/Taskfile.yml - utility:mktemp-folder: - vars: - RAW_PATH: - sh: mktemp --directory --tmpdir "{{.TEMPLATE}}" - cmds: - - task: utility:normalize-path - vars: - RAW_PATH: "{{.RAW_PATH}}" - # Print a normalized version of the path passed via the RAW_PATH variable to stdout # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/windows-task/Taskfile.yml utility:normalize-path: