1. 30 Oct, 2020 1 commit
  2. 02 Oct, 2020 4 commits
  3. 01 Oct, 2020 1 commit
  4. 03 Jul, 2020 1 commit
  5. 20 Dec, 2019 1 commit
  6. 18 Dec, 2019 6 commits
  7. 15 Dec, 2019 3 commits
  8. 03 Dec, 2019 1 commit
  9. 02 Dec, 2019 1 commit
  10. 21 Oct, 2019 2 commits
  11. 22 Aug, 2019 2 commits
  12. 14 Aug, 2019 3 commits
  13. 02 Aug, 2019 3 commits
  14. 26 Feb, 2019 1 commit
  15. 18 Feb, 2019 1 commit
  16. 25 Nov, 2018 1 commit
  17. 12 Nov, 2018 1 commit
  18. 10 Oct, 2018 5 commits
  19. 09 Oct, 2018 1 commit
  20. 08 Oct, 2018 1 commit
    • Frédéric Fauberteau's avatar
      Fix portability problem due to == test · 95874403
      Frédéric Fauberteau authored
      The "test" command, as well as the "[" command, are not required to know
      the "==" operator. Only a few implementations like bash and some
      versions of ksh support it.
      
      When you run "test foo == foo" on a platform that does not support the
      "==" operator, the result will be "false" instead of "true". This can
      lead to unexpected behavior.
      95874403