mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-23 18:03:11 +00:00
(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:
@@ -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
|
||||
|
@@ -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);
|
||||
|
@@ -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);
|
||||
|
@@ -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);
|
||||
|
@@ -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);
|
||||
|
Reference in New Issue
Block a user