Skip to content

Commit

Permalink
Add Scraps/package.sh which builds the source release archive
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwa committed Jun 3, 2014
1 parent edf2676 commit 943e68d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Scraps/package.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

CHECKOUTDIR=coreobjectpackaging
ARCHIVENAME="CoreObject-0.5.tgz"

rm -fr $CHECKOUTDIR
mkdir $CHECKOUTDIR
cd $CHECKOUTDIR
git clone https://github.com/etoile/CoreObject.git
git clone https://github.com/etoile/EtoileFoundation.git
git clone https://github.com/etoile/UnitKit.git

rm -fr CoreObject/.git
rm -fr EtoileFoundation/.git
rm -fr UnitKit/.git

tar czvvf $ARCHIVENAME CoreObject EtoileFoundation UnitKit

rm -fr CoreObject EtoileFoundation UnitKit
cd ..

0 comments on commit 943e68d

Please sign in to comment.