|
29 | 29 | echo "Licensed does not have Windows support." |
30 | 30 | echo "Please use Linux/macOS or download the dependencies cache from the GitHub Actions workflow artifact." |
31 | 31 | else |
32 | | - echo "licensed not found or not in PATH. Please install: https://github.com/github/licensed#as-an-executable" |
| 32 | + echo "licensed not found or not in PATH." |
| 33 | + echo "Please install: https://github.com/github/licensed#as-an-executable" |
33 | 34 | fi |
34 | 35 | exit 1 |
35 | 36 | fi |
|
85 | 86 | # npx --call uses the native shell, which makes it too difficult to use npx for this application on Windows, |
86 | 87 | # so the Windows user is required to have markdown-link-check installed and in PATH. |
87 | 88 | if ! which markdown-link-check &>/dev/null; then |
88 | | - echo "markdown-link-check not found or not in PATH. Please install: https://github.com/tcort/markdown-link-check#readme" |
| 89 | + echo "markdown-link-check not found or not in PATH." |
| 90 | + echo "Please install: https://github.com/tcort/markdown-link-check#readme" |
89 | 91 | exit 1 |
90 | 92 | fi |
91 | 93 | # Default behavior of the task on Windows is to exit the task when the first broken link causes a non-zero |
@@ -190,7 +192,8 @@ tasks: |
190 | 192 | cmds: |
191 | 193 | - | |
192 | 194 | if ! which ec &>/dev/null; then |
193 | | - echo "ec not found or not in PATH. Please install: https://github.com/editorconfig-checker/editorconfig-checker#installation" |
| 195 | + echo "ec not found or not in PATH." |
| 196 | + echo "Please install: https://github.com/editorconfig-checker/editorconfig-checker#installation" |
194 | 197 | exit 1 |
195 | 198 | fi |
196 | 199 | - ec |
@@ -240,7 +243,11 @@ vars: |
240 | 243 | DEFAULT_GO_MODULE_PATH: ./ |
241 | 244 | DEFAULT_GO_PACKAGES: |
242 | 245 | sh: | |
243 | | - echo $(cd {{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}} && go list ./... | tr '\n' ' ' || echo '"ERROR: Unable to discover Go packages"') |
| 246 | + echo $( |
| 247 | + cd {{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}} && |
| 248 | + go list ./... | tr '\n' ' ' || |
| 249 | + echo '"ERROR: Unable to discover Go packages"' |
| 250 | + ) |
244 | 251 | # build vars |
245 | 252 | COMMIT: |
246 | 253 | sh: echo "$(git log --no-show-signature -n 1 --format=%h)" |
|
0 commit comments