
interchange-cvs at icdevgroup
Nov 3, 2009, 11:54 AM
Post #1 of 1
(45 views)
Permalink
|
|
[SCM] Interchange branch, master, updated. REL_5_7_2-32-gd7fb15a
|
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Interchange". The branch, master has been updated via d7fb15a9472c976f03f491aa19395c614cb38b0f (commit) via 3c4cc4decd2d44b9f38b6cd02a786ea429879797 (commit) from 9004a52ad56900c48d76f3780019bda9f8efcf97 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d7fb15a9472c976f03f491aa19395c614cb38b0f Author: Stefan Hornburg (Racke) <racke[at]linuxia.de> Date: Tue Nov 3 12:14:29 2009 +0100 die on errors in global configuration commit 3c4cc4decd2d44b9f38b6cd02a786ea429879797 Author: Stefan Hornburg (Racke) <racke[at]linuxia.de> Date: Tue Nov 3 11:06:48 2009 +0100 removed obsolete CVS keyword ----------------------------------------------------------------------- Summary of changes and diff: scripts/crontab.PL | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/crontab.PL b/scripts/crontab.PL index e727b79..c5007c2 100644 --- a/scripts/crontab.PL +++ b/scripts/crontab.PL @@ -3,9 +3,7 @@ # # Interchange cron editor # -# $Id: crontab.PL,v 2.4 2008-08-13 00:18:51 jon Exp $ -# -# Copyright (C) 2005-2008 Interchange Development Group +# Copyright (C) 2005-2009 Interchange Development Group # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -63,6 +61,10 @@ my $safe = new Safe; my $configstring = `$FindBin::Bin/interchange -globalconfig`; +if ($?) { + die "Error retrieving global configuration.\n"; +} + chdir $Global::VendRoot or die "Unable to chdir to $Global::VendRoot: $!\n"; hooks/post-receive -- Interchange _______________________________________________ interchange-cvs mailing list interchange-cvs[at]icdevgroup.org http://www.icdevgroup.org/mailman/listinfo/interchange-cvs
|