diff options
author | Rob Austein <sra@hactrn.net> | 2010-04-02 14:35:38 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-04-02 14:35:38 +0000 |
commit | 8b3b77bfebbb192a77d35f899b45d9a568280d88 (patch) | |
tree | c9d840361674a7e2923b22e626abcc40610498b0 | |
parent | 0eafceedf5386e739fc345a384fe668343af6175 (diff) |
Doh, set PATH before running ./configure.
svn path=/rpkid/cronjob.sh; revision=3156
-rwxr-xr-x | rpkid/cronjob.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpkid/cronjob.sh b/rpkid/cronjob.sh index 38312192..3aabdf95 100755 --- a/rpkid/cronjob.sh +++ b/rpkid/cronjob.sh @@ -28,10 +28,11 @@ case "$1" in locked) exec >cronjob.log 2>&1 set -x + export PATH=/bin:/usr/bin:/usr/local/bin /usr/local/bin/svn update --quiet (cd .. && ./configure) /bin/rm -rf doc/html - PATH=/bin:/usr/bin:/usr/local/bin /usr/bin/make docs </dev/null + /usr/bin/make docs </dev/null /usr/local/bin/rsync --archive --itemize-changes --delete-after doc/html/ $target/ ;; |