https://github.com/epiqc/ScaffCC
Revision 2ac5df8551bf671546471930abd6fe0bcac28d9c authored by EPiQC on 18 June 2018, 18:29:10 UTC, committed by GitHub on 18 June 2018, 18:29:10 UTC
2 parent s ccc4af9 + 785dca2
Raw File
Tip revision: 2ac5df8551bf671546471930abd6fe0bcac28d9c authored by EPiQC on 18 June 2018, 18:29:10 UTC
Merge pull request #21 from ryanxw/master
Tip revision: 2ac5df8
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