1. 16 Jan, 2017 1 commit
    • Dridi Boukelmoune's avatar
      Fix shell expansion when mixed with regular strings · 6e21a2ee
      Dridi Boukelmoune authored
      I noticed that some shells like ye olde bash available on SmartOS don't
      treat the following construct as single a token:
      
          ${dir}/${file}
      
      The following expands a single token on the RHS even if the variable
      contains spaces:
      
          var=${dir}
      
      But a token involving a regular string too needs to be protected by
      double quotes:
      
          var="${dir}/${file}"
      
      Even when none of the variables contain blanks.
      
      Refs #2139
      6e21a2ee
  2. 15 Jan, 2017 15 commits
  3. 14 Jan, 2017 12 commits
  4. 13 Jan, 2017 6 commits
  5. 12 Jan, 2017 1 commit
  6. 11 Jan, 2017 5 commits