https://github.com/epiqc/ScaffCC
Revision 0c99b1003662bd784e6c4d9d5053874918cc5ade authored by EPiQC on 08 July 2019, 21:28:06 UTC, committed by GitHub on 08 July 2019, 21:28:06 UTC
Segmentation Faults and Fixes to Run main branch on macOS
2 parent s 98275a9 + 5ea8679
Raw File
Tip revision: 0c99b1003662bd784e6c4d9d5053874918cc5ade authored by EPiQC on 08 July 2019, 21:28:06 UTC
Merge pull request #38 from AndrewLitteken/master
Tip revision: 0c99b10
source_me
/bin/bash rkqc > /dev/null 2> /dev/null

if [ "$?" == "0" ]
then
  echo
  echo "It looks like \"rkqc\" is already in your \$PATH (possibly from a previous installation)."
  echo "Remove the old \"rkqc\" executable from your \$PATH, then source \"source_me\" one more time."
  echo
  echo
else
  export RKQC_PATH=$(pwd)/rkqc
  export PATH=$PATH:$RKQC_PATH
fi

back to top