Skip to content
Snippets Groups Projects
  1. Jan 17, 2017
  2. Jan 12, 2017
    • Mark Olesen's avatar
      ENH: command-line query for the OPENFOAM_PLUS wmake value (issue #378) · 23d24a51
      Mark Olesen authored
      Examples,
      
          wmakePrintBuild -plus
      
      Check if value is known
      (ie, everything configured and also OpenFOAM+):
      
          if wmakePrintBuild -plus >/dev/null 2>&1
          then
              echo YES
          else
              echo NO
          fi
      
      Check if version is new enough
      
          if ofver=$(wmakePrintBuild -plus 2>/dev/null) && [ "$ofver" -ge 1612 ]
          then
              echo YES
          else
              echo NO
          fi
      
      Conditionals
      
          ofver=$(wmakePrintBuild -plus 2>/dev/null)
          case "${ofver:=0}" in
          1612)
              echo "something for 1612
              ;;
          1706)
              echo "something for 1706
              ;;
          esac
      23d24a51
  3. Jan 11, 2017
  4. Jan 10, 2017
  5. Jan 06, 2017
  6. Jan 04, 2017
  7. Jan 03, 2017
    • Mark Olesen's avatar
      BUG: Incomplete cleanup of paraview environment (fixes #369) · 0761974a
      Mark Olesen authored
      - LD_LIBRARY_PATH was not being cleaned at all when switching between
        paraview versions.
      
      - PATH was cleaned against the third-party paraview-*, although 3rd
        party paraview is installed as ParaView-*.
        The additional cleanup for ParaView_DIR may not catch this (if it
        was unset elsewhere).
      0761974a
  8. Dec 23, 2016
  9. Dec 22, 2016
  10. Dec 21, 2016