Skip to content

Commit 5890ee4

Browse files
committed
Merge branch 'release-cleanup'
2 parents 9aed0de + eb45818 commit 5890ee4

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ NANNY
2020
.lein-failures
2121
_release
2222
*.zip
23+
*.tar.gz
2324
.lein-deps-sum
2425
*.iml
2526
target

bin/build_release.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ echo Making release $RELEASE
1313
DIR=`pwd`/_release/storm-$RELEASE
1414

1515
rm -rf _release
16-
rm -f *.zip
16+
rm -f *.zip
17+
rm -f *.tar.gz
1718
$LEIN pom || exit 1
1819
mkdir -p $DIR/lib
1920

@@ -56,7 +57,10 @@ cp LICENSE.html $DIR/
5657

5758
cd _release
5859
zip -r storm-$RELEASE.zip *
60+
mv storm-*.zip ../
61+
tar -cvzf ../storm-$RELEASE.tar.gz ./
62+
5963
cd ..
60-
mv _release/storm-*.zip .
64+
6165
rm -rf _release
6266

bin/storm

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_config_opts():
3939
if not os.path.exists(STORM_DIR + "/RELEASE"):
4040
print "******************************************"
4141
print "The storm client can only be run from within a release. You appear to be trying to run the client from a checkout of Storm's source code."
42-
print "\nYou can download a Storm release at https://github.com/nathanmarz/storm/downloads"
42+
print "\nYou can download a Storm release at http://storm-project.net/downloads.html"
4343
print "******************************************"
4444
sys.exit(1)
4545

0 commit comments

Comments
 (0)