https://github.com/epiqc/ScaffCC
Revision 55cf96c5358c38260dcd89f26d571c9dcf4d3db2 authored by Yipeng Huang on 12 October 2018, 21:31:29 UTC, committed by Yipeng Huang on 12 October 2018, 21:31:29 UTC
2 parent s a014f22 + 1b31571
Raw File
Tip revision: 55cf96c5358c38260dcd89f26d571c9dcf4d3db2 authored by Yipeng Huang on 12 October 2018, 21:31:29 UTC
Merge remote-tracking branch 'upstream/master'
Tip revision: 55cf96c
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