https://github.com/epiqc/ScaffCC
Revision bc51d5b3c4edb9fc09017f79f769f13dc0f68e26 authored by Yipeng Huang on 25 February 2019, 00:44:56 UTC, committed by Yipeng Huang on 25 February 2019, 00:44:56 UTC
2 parent s 2e29506 + f8fc4c2
Raw File
Tip revision: bc51d5b3c4edb9fc09017f79f769f13dc0f68e26 authored by Yipeng Huang on 25 February 2019, 00:44:56 UTC
Merge remote-tracking branch 'upstream/master'
Tip revision: bc51d5b
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