Commit e87d3b5
committed
Correct syntax of shell code in "Check Certificates" workflow
Previously, the command was erroneously split at the first parenthesis. This resulted in the introduction of spaces
between the two parentheses, which caused the syntax to be interpreted as a command substitution operator instead of the
intended arithmetic expansion operator. This caused the command to fail:
```
/home/runner/work/_temp/2470dde2-826c-4a00-8268-b8d111566dc2.sh: line 46: syntax error near unexpected token `/'
```1 parent c83f15e commit e87d3b5
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
172 | 172 | | |
173 | 173 | | |
174 | 174 | | |
175 | | - | |
176 | | - | |
177 | | - | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
178 | 178 | | |
179 | 179 | | |
180 | 180 | | |
| |||
0 commit comments