10 lines
647 B
Plaintext
10 lines
647 B
Plaintext
# use /bin/sh to run commands, overriding the default set by cron
|
|
SHELL=/bin/bash
|
|
# mail any output to `paul', no matter whose crontab this is
|
|
MAILTO=rd@ionu.com
|
|
#
|
|
# run five minutes after two, every day
|
|
5 2 * * * /bin/bash -l -c 'source /home/builder/.bashrc; /home/builder/Build/utils/mbci.sh /home/builder/Build/QA --build trunk --propfile build-lin64.properties --endhtml --mailto rd@ionu.com'
|
|
# run 50 min after every hour; test only!
|
|
#50 * * * * /bin/bash -l -c 'source /home/builder/.bashrc; /home/builder/Build/utils/mbci.sh /home/builder/Build/QA --build trunk --propfile build-lin64.properties --endhtml --mailto rd@ionu.com'
|