Skip to content

Commit

Permalink
SYMMETRICDS-207 - added simple war shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Sep 10, 2010
1 parent 9c301d3 commit 742f81c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions symmetric/symmetric-ds/src/main/deploy/bin/war
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh
#
# Create a war file from this distribution
#
rm -rf ../.war
mkdir -p ../.war
cp -r ../web/* ../.war/.
mkdir -p ../.war/WEB-INF/classes
cp ../conf/* ../.war/WEB-INF/classes/.
cd ../.war
jar -cvf symmetric-ds.war .
cp symmetric-ds.war ../.
rm -rf ../.war

0 comments on commit 742f81c

Please sign in to comment.