https://github.com/epiqc/ScaffCC
Revision 7875ca880548ddcb29589e7f1a026b8f130faf34 authored by Yipeng Huang on 10 October 2018, 19:20:57 UTC, committed by Yipeng Huang on 10 October 2018, 19:20:57 UTC
1 parent f5dc856
Raw File
Tip revision: 7875ca880548ddcb29589e7f1a026b8f130faf34 authored by Yipeng Huang on 10 October 2018, 19:20:57 UTC
Synching Shor's implementation
Tip revision: 7875ca8
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