refactor(shellcheck): fix violation

```
In bin/convert-formula.sh line 90:
        s/========/$(repeat_char =)/
                                 ^-- SC2283 (error): Remove spaces around = to assign
                                                     (or use [ ] to compare,
                                                      or quote '=' if literal).
For more information:
  https://www.shellcheck.net/wiki/SC2283 -- Remove spaces around = to assign ...
```
This commit is contained in:
Imran Iqbal 2022-02-11 23:04:25 +00:00
parent a284a566b4
commit 4ee6387bf9
No known key found for this signature in database
GPG key ID: 6D8629439D2B7819

View file

@ -87,7 +87,7 @@ convert_formula() {
# on the following line matches the length of the new formula name
sedi "/TEMPLATE/{
n
s/========/$(repeat_char =)/
s/========/$(repeat_char '=')/
s/--------/$(repeat_char -)/
s/\^^^^^^^^/$(repeat_char ^)/
s/\~~~~~~~~/$(repeat_char \~)/"'