(MacOS) Don't package up .svn dirs with 'build.sh uqm install'.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2678 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
Meep-Eep
2007-01-19 18:46:06 +00:00
parent dcb277a505
commit 50ef1a22b4
2 changed files with 5 additions and 4 deletions
+3 -4
View File
@@ -459,10 +459,9 @@ uqm_install_osx() {
echo "Creating base content package..." >&2
cp content/version "$INSTROOT/Resources/content/"
(cd content && \
find . \( -name CVS -o -name packages \) -prune -o \
\! \( -type d -o -name packages -o -name CVS -o \
-name \*.ogg \) -print | $SED 's/^..//' | \
zip -@ uqm-${VERSION}-prv-content.uqm)
find . \( -name CVS -o -name packages -o -name .svn \) -prune \
-o \! \( -type d -o -name \*.ogg \) -print | \
$SED 's/^..//' | zip -@ uqm-${VERSION}-prv-content.uqm)
mv content/uqm-$VERSION-prv-content.uqm "$INSTROOT/Resources/content/packages"
echo "Creating voice content package..." >&2