|
From: <st...@us...> - 2008-10-08 20:25:28
|
Revision: 612
http://safekeep.svn.sourceforge.net/safekeep/?rev=612&view=rev
Author: stelian
Date: 2008-10-08 20:25:12 +0000 (Wed, 08 Oct 2008)
Log Message:
-----------
Fix <user,group> scp syntax to access SF.net web area.
Fix globbing syntax in Makefile.
Modified Paths:
--------------
website/trunk/Makefile
Modified: website/trunk/Makefile
===================================================================
--- website/trunk/Makefile 2008-10-08 20:05:16 UTC (rev 611)
+++ website/trunk/Makefile 2008-10-08 20:25:12 UTC (rev 612)
@@ -5,7 +5,8 @@
CSS_VALID_OK=Congratulations!
SF_SERVER=web.sourceforge.net
SF_HOME=/home/groups/s/sa/safekeep
-HTDOCS=$(SF_SERVER):$(SF_HOME)/htdocs
+SF_USER=$(shell whoami)
+HTDOCS=$(SF_USER),safekeep@$(SF_SERVER):$(SF_HOME)/htdocs
PAGES = contributing.shtml \
documentation.shtml \
@@ -30,8 +31,10 @@
@echo " clean Cleans up the source tree"
deploy:
- scp WebContent/*.{html,shtml} $(HTDOCS)
- scp WebContent/images/*.{gif,png} $(HTDOCS)/images
+ scp WebContent/*.html $(HTDOCS)
+ scp WebContent/*.shtml $(HTDOCS)
+ scp WebContent/images/*.gif $(HTDOCS)/images
+ scp WebContent/images/*.png $(HTDOCS)/images
scp WebContent/theme/*.css $(HTDOCS)/theme
test: test-html test-css
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|