(Monika Mevenkamp)

- SF Patch #1654469 stat scripts always return exit code 1


git-svn-id: http://scm.dspace.org/svn/repo/trunk@1767 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
James Rutherford
2007-04-06 16:45:17 +00:00
parent 8091277eb7
commit 1e64faade1
5 changed files with 11 additions and 8 deletions

View File

@@ -39,6 +39,9 @@
- SF Patch #1641678 [dspace]/bin scripts for import and export
- SF Patch #1642336 Restrict domains of self-registered users
(Monika Mevenkamp)
- SF Patch #1654469 stat scripts always return exit code 1
(K. Nakagami)
- SF Patch #1591969 for SF bug #1583372 DCDate.toString returns invalid string
- SF Patch #1621889 for SF Bug #1606789 When collection is deleted, mapped item remains in community

View File

@@ -81,6 +81,6 @@ $out_directory = "/dspace/log/";
$general = "$dsrun org.dspace.app.statistics.LogAnalyser -out $out_directory$out_prefix$this_year-$this_month-$day$out_suffix";
system($general);
$status = system($general);
exit(1);
exit($status);

View File

@@ -120,6 +120,6 @@ $out = $out_directory . $out_prefix . $this_year . "-" . $this_month . $out_suff
# The command to generate the report
$execute = "$dsrun org.dspace.app.statistics.LogAnalyser -start $start -end $end -out $out";
system($execute);
$status = system($general);
exit(1);
exit($status);

View File

@@ -88,6 +88,6 @@ $out = $out_directory . $out_prefix . $this_year . "-" . $this_month . "-" . $da
$general = "$dsrun org.dspace.app.statistics.ReportGenerator -format html -in $in -out $out";
system($general);
$status = system($general);
exit(1);
exit($status);

View File

@@ -100,6 +100,6 @@ $out = $out_directory . $out_prefix . $this_year . "-" . $this_month . $out_suff
# The command to generate the report
$execute = "$dsrun org.dspace.app.statistics.ReportGenerator -format html -in $in -out $out";
system($execute);
$status = system($general);
exit(1);
exit($status);