grim/guifications2-theme-howto

changed the mailing list to the gf.o list
default tip
2011-12-18, Gary Kramlich
5959d825d61a
file isExecutable
changed the mailing list to the gf.o list
#!/bin/sh
# guifications i18n stats update utility.
# (C) 2005 The Guifications Team
#
# Author(s):
# Gary Kramlich
# This script assumes one of two things. One being that your sourceforge name
# is the same username as your shell username, or that you have added a host
# block to your ~/.ssh/config containing your username for sourceforge. Please
# make sure you meet these requirements before saying it doesn't work.
# This is the dir we're copying the docbook to, make sure that these files
# (or the directory they're in) are group writable.
SF_DIR="/home/groups/g/gu/guifications/htdocs/Guifications/themes/theme_howto/"
# This is the directory that the docbook got outputed to
OUTPUT=output
# Lets do this now...
OLDDIR=`pwd`
cd "$OUTPUT"
tar zcf - * | ssh shell.sf.net "cd $SF_DIR ; tar zxvf - ; chmod -R 664 *.html; chmod -R 644 images/*.png"
cd "$OLDDIR"