added script to build archive for download area
This commit is contained in:
11
tools/build_archive.sh
Executable file
11
tools/build_archive.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
TODAY=`date +%Y-%m-%d`
|
||||
echo $TODAY
|
||||
mkdir $TODAY
|
||||
cd $TODAY
|
||||
git clone --recursive https://github.com/Eiffel-World/Eiffel-Web-Framework.git EWF_$TODAY
|
||||
tar czvf EWF_$TODAY.tgz EWF_$TODAY --exclude .git
|
||||
tar czvf EWF_with_git_$TODAY.tgz EWF_$TODAY
|
||||
zip -q -r -T EWF_$TODAY.zip EWF_$TODAY -x "*.git*"
|
||||
\rm -rf EWF_$TODAY
|
||||
Reference in New Issue
Block a user