[Koha-cvs] CVS: koha/misc buildrelease,1.10,1.11

Ambrose Li acli at users.sourceforge.net
Sat Jan 25 07:32:36 CET 2003


Update of /cvsroot/koha/koha/misc
In directory sc8-pr-cvs1:/tmp/cvs-serv18564/misc

Modified Files:
	buildrelease 
Log Message:
The templates were installed in the wrong directories [Bug 174]


Index: buildrelease
===================================================================
RCS file: /cvsroot/koha/koha/misc/buildrelease,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** buildrelease	20 Jan 2003 13:23:20 -0000	1.10
--- buildrelease	25 Jan 2003 06:32:34 -0000	1.11
***************
*** 227,231 ****
  Using $kohadir.
  |;
! chdir($kohadir);
  system("cvs update");
  if ($cvstag) {
--- 227,231 ----
  Using $kohadir.
  |;
! chdir($kohadir) || die "$kohadir: $!\n";
  system("cvs update");
  if ($cvstag) {
***************
*** 351,357 ****
  
  # Copy koha-tmpl files
! system("cp -a $kohatmpldir/opac-tmpl/* $rootdir/opac-html");
! system("cp -a $kohatmpldir/intranet-tmpl/* $rootdir/intranet-html");
! system("rm -rf $rootdir/intranet-cgi/koha-tmpl");
  
  # Remove extraneous files from opac-html
--- 351,357 ----
  
  # Copy koha-tmpl files
! system('cp', '-a', "$kohatmpldir/opac-tmpl", "$rootdir/opac-html");
! system('cp', '-a', "$kohatmpldir/intranet-tmpl", "$rootdir/intranet-html");
! system('rm', '-rf', "$rootdir/intranet-cgi/koha-tmpl");
  
  # Remove extraneous files from opac-html





More information about the Koha-cvs mailing list