Commit 9e651c3
committed
Replace
This script uses `#!/bin/sh` as its shebang, which means it expects a
POSIX-compliant shell. However, it also uses `echo -e` which is not
POSIX-compliant[0].
Rewrite `echo -e "$arg"` invocations to `printf "$arg\\n"` so that
the script is brought into POSIX compliance.
[0]: https://pubs.opengroup.org/onlinepubs/009604599/utilities/echo.html
[1]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/printf.htmlecho -e with printf
1 parent 3cf5103 commit 9e651c3
1 file changed
Lines changed: 6 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
299 | 299 | | |
300 | 300 | | |
301 | 301 | | |
302 | | - | |
| 302 | + | |
303 | 303 | | |
304 | 304 | | |
305 | 305 | | |
| |||
323 | 323 | | |
324 | 324 | | |
325 | 325 | | |
326 | | - | |
| 326 | + | |
327 | 327 | | |
328 | 328 | | |
329 | 329 | | |
| |||
338 | 338 | | |
339 | 339 | | |
340 | 340 | | |
341 | | - | |
| 341 | + | |
342 | 342 | | |
343 | 343 | | |
344 | 344 | | |
| |||
356 | 356 | | |
357 | 357 | | |
358 | 358 | | |
359 | | - | |
| 359 | + | |
360 | 360 | | |
361 | 361 | | |
362 | 362 | | |
| |||
374 | 374 | | |
375 | 375 | | |
376 | 376 | | |
377 | | - | |
378 | | - | |
| 377 | + | |
| 378 | + | |
379 | 379 | | |
380 | 380 | | |
381 | 381 | | |
| |||
0 commit comments