https://github.com/epiqc/ScaffCC
Raw File
Tip revision: be5bfe685a7b7268af2ae0344c2ffe444e77f296 authored by ah744 on 20 August 2016, 18:31:59 UTC
Small script changes
Tip revision: be5bfe6
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