[Openfirst-cvscommit] www updatesite.sh,1.3,1.4
Brought to you by:
xtimg
From: Tim G. <xt...@us...> - 2005-01-01 21:18:29
|
Update of /cvsroot/openfirst/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31656 Modified Files: updatesite.sh Log Message: It's no longer necessary to update the Live Demo through this script; but updating the news might be useful Index: updatesite.sh =================================================================== RCS file: /cvsroot/openfirst/www/updatesite.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** updatesite.sh 24 Jun 2004 01:06:23 -0000 1.3 --- updatesite.sh 1 Jan 2005 21:18:16 -0000 1.4 *************** *** 1,12 **** #!/bin/sh - # Update the Live Demo - cd htdocs/demo/ - php updatedemo.php - - cd ../../ # Update from CVS cvs update -dP # Ensure website can write session information chmod o+w,g+w tmp/ --- 1,12 ---- #!/bin/sh # Update from CVS cvs update -dP + # Update news + cd htdocs + ./news.sh + cd .. + # Ensure website can write session information chmod o+w,g+w tmp/ |