Skip to content
Snippets Groups Projects
dm-stop-upload 335 B
Newer Older
#!/bin/sh

# Run command

if [ -z $DM_ROOT_DIR ]; then
    cd `dirname $0` && myDir=`pwd`
    setupFile=$myDir/../setup.sh
    if [ ! -f $setupFile ]; then
        echo "Cannot find setup file: $setupFile"
        exit 1
    fi
    source $setupFile > /dev/null
fi

$DM_ROOT_DIR/src/python/dm/daq_web_service/cli/stopUploadCli.py $@