Updated the content packaging script, which had fallen out of sync in

the repository.

This also hopefully should serve to announce that UQM development has 
shifted over to the SourceForge's Subversion servers, and so a new 
checkout with the command:

svn co https://sc2.svn.sourceforge.net/svnroot/sc2/trunk uqm

would be wise.



git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2630 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
mcmartin
2006-12-19 02:21:00 +00:00
parent cf26454d14
commit 9cb412b41f
+8 -5
View File
@@ -17,11 +17,14 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
VERSION=0.4.0 VERSION=0.6.0
LIST_DIR=/home/uqm/var/uqmzip # THESE MUST BE DEFINED, PREFERABLY AS ABSOLUTE PATHS, BEFORE RUNNING
PKG_DIR=/home/uqm/var/uqmzip # THIS SCRIPT
SOURCE_DIR=/home/uqm/cvs/sc2
LIST_DIR=/invalid/dir
PKG_DIR=/invalid/dir
SOURCE_DIR=/invalid/dir
CONTENT_DIR=$SOURCE_DIR/content CONTENT_DIR=$SOURCE_DIR/content
CONTENT_LIST=$LIST_DIR/uqm-$VERSION-content.lst CONTENT_LIST=$LIST_DIR/uqm-$VERSION-content.lst
@@ -36,7 +39,7 @@ ZIP="zip -X -q -n .ogg -8"
make_content_list() { make_content_list() {
cd "$CONTENT_DIR" cd "$CONTENT_DIR"
find . -type f -not -path '*/CVS*' -and -not -name "*.ogg" | sort > "$CONTENT_LIST" find . -type f -not -path '*/CVS*' -and -not -name "*.ogg" -and -not -name "version" | sort > "$CONTENT_LIST"
} }
make_voice_list() { make_voice_list() {