https://github.com/epiqc/ScaffCC
Revision ce6f0523fbaff0817c4be4d2697a4ebbf18eebdd authored by Yipeng Huang on 07 September 2018, 20:38:37 UTC, committed by Yipeng Huang on 07 September 2018, 20:38:37 UTC
1 parent 64a0d75
Raw File
Tip revision: ce6f0523fbaff0817c4be4d2697a4ebbf18eebdd authored by Yipeng Huang on 07 September 2018, 20:38:37 UTC
CI
Tip revision: ce6f052
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