Skip to content

Commit 252186a

Browse files
committed
Configure script path in shell-related task calls in umbrella tasks
The tasks for facilitating development and validation of shell scripts were recently adjusted to target specific scripts. After that change, it is necessary to specify the path to the script in the task call. For the convenience of the contributor, the taskfile contains some "umbrella" tasks that call all of the tasks of a given type. These call the shell-related tasks. Those calls were not updated at the time the shell tasks were changed to a targeted approach so previously they were not functional.
1 parent 32357d8 commit 252186a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: Taskfile.yml

+6
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ tasks:
7676
- task: markdown:check-links
7777
- task: python:lint
7878
- task: shell:check
79+
vars:
80+
SCRIPT_PATH: etc/install.sh
7981
- task: shell:check-mode
82+
vars:
83+
SCRIPT_PATH: etc/install.sh
8084
- task: website:check
8185

8286
fix:
@@ -109,6 +113,8 @@ tasks:
109113
- task: markdown:fix
110114
- task: python:format
111115
- task: shell:format
116+
vars:
117+
SCRIPT_PATH: etc/install.sh
112118

113119
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-workflows-task/Taskfile.yml
114120
ci:validate:

0 commit comments

Comments
 (0)