make.sh 238 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #!/bin/sh make RET=$? if [ ${RET} -ne 0 ] then exit ${RET} fi CP_DIR_LIST="/nfs/prime_oven ../release/" if [ ${CP_DIR} ] then CP_DIR_LIST="${CP_DIR_LIST} ${CP_DIR}" fi for DIR in ${CP_DIR_LIST} do cp -v superdaemon ${DIR} done