1. 21 May, 2021 2 commits
  2. 03 May, 2021 4 commits
  3. 26 Apr, 2021 1 commit
  4. 25 Apr, 2021 6 commits
  5. 23 Apr, 2021 4 commits
  6. 11 Apr, 2021 2 commits
  7. 09 Apr, 2021 4 commits
  8. 07 Apr, 2021 1 commit
  9. 06 Apr, 2021 9 commits
  10. 31 Mar, 2021 2 commits
  11. 28 Mar, 2021 2 commits
  12. 27 Mar, 2021 1 commit
  13. 25 Mar, 2021 1 commit
  14. 15 Mar, 2021 1 commit
    • Léa Gris's avatar
      refactor(installer): fix static analysis warnings (#9529) · 95a06f39
      Léa Gris authored
      * refactor(install.sh): fix static analysis warnings
      
      Clear all warnings and errors raised by shellcheck.net static analysis.
      
      - Replace non-POSIX shell use of `$OSTYPE` by POSIX compliant check on `uname -o`.
      - Move variables out of`printf` format string.
      - Refactor/simplify string formatters for error and underline.
      - Fix expansion of arguments to a single string `$*` rather than individual elements `$@` within the error and underline formatters.
      
      * fix(uname): non-posix -o option
      
      * fix(install.sh): non portable which
      
      Replaced non-portable `which zsh` by portable `command -v zsh`
      95a06f39