#!/bin/sh

export LD_LIBRARY_PATH=${UTILS_DIR}/lib
export PYTHONPATH=${UTILS_DIR}/lib/python:${PYTHONPATH}

if test -f CollectManager.py; then \
  ${UTILS_DIR}/bin/repoman CollectManager.py repoman.cfg $*
else
  ${UTILS_DIR}/bin/repoman ${UTILS_DIR}/lib/python/CollectManager.py collect.cfg $*; 
fi

