1. 30 Jun, 2020 1 commit
    • Patrick Moore's avatar
      Handle unset variables in various parts of the codebase (#8944) · e606ac70
      Patrick Moore authored
      DISABLE_UNTRACKED_FILES_DIRTY, DISABLE_AUTO_TITLE, GIT_STATUS_IGNORE_SUBMODULES are not set
      Handle these variables not being set with conditional access.
      
      If the user has set -u option to report attempts to use undeclared / unassigned variable, accessing the variables needs to be conditional.
      e606ac70
  2. 19 Jun, 2020 1 commit
  3. 05 Mar, 2020 1 commit
  4. 03 Mar, 2020 2 commits
  5. 28 Feb, 2020 1 commit
  6. 19 Nov, 2019 1 commit
  7. 07 Jul, 2019 1 commit
  8. 06 Jul, 2019 1 commit
  9. 21 Mar, 2019 1 commit
  10. 07 Aug, 2018 1 commit
    • Janosch Schwalm's avatar
      use https everywhere (#6574) · 19b925e7
      Janosch Schwalm authored
      * use https everywhere
      
      * use https links on the files that are left
      
      Also, removed some broken links and updated redirections.
      19b925e7
  11. 14 Dec, 2015 2 commits
  12. 01 Dec, 2015 4 commits
  13. 30 Nov, 2015 2 commits
  14. 27 Nov, 2015 1 commit
  15. 18 Aug, 2015 1 commit
  16. 09 Aug, 2015 2 commits
  17. 01 Aug, 2015 1 commit
  18. 21 Feb, 2015 2 commits
  19. 17 Feb, 2015 2 commits
  20. 15 Feb, 2015 2 commits
  21. 13 Feb, 2015 1 commit
  22. 10 Feb, 2015 3 commits
  23. 04 Feb, 2015 1 commit
  24. 28 Jan, 2015 1 commit
  25. 21 Dec, 2014 1 commit
  26. 22 Aug, 2014 1 commit
  27. 05 Jun, 2014 1 commit
  28. 25 Mar, 2014 1 commit
    • Marc Cornellà's avatar
      Escape % in $CMD variable · 5137e0e5
      Marc Cornellà authored
      Fixes formatting on some rare cases when a percent ends up
      in the $CMD variable, like these below:
      
      - When assigning a variable, $CMD ends up with the second parameter;
      in this case, $CMD will contain '+%s%N', messing with the syntax:
      
       $ a=`date +%s%N`
      
      - A function (or command in general) that contains a percent symbol:
      
       $ to\%() { echo $(( $1 * 100 / $3))\% } # $CMD=to%()
       $ to% 2 of 10 # $CMD=to%
      5137e0e5