File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 20
20
.lein-failures
21
21
_release
22
22
* .zip
23
+ * .tar.gz
23
24
.lein-deps-sum
24
25
* .iml
25
26
target
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ echo Making release $RELEASE
13
13
DIR=` pwd` /_release/storm-$RELEASE
14
14
15
15
rm -rf _release
16
- rm -f * .zip
16
+ rm -f * .zip
17
+ rm -f * .tar.gz
17
18
$LEIN pom || exit 1
18
19
mkdir -p $DIR /lib
19
20
@@ -56,7 +57,10 @@ cp LICENSE.html $DIR/
56
57
57
58
cd _release
58
59
zip -r storm-$RELEASE .zip *
60
+ mv storm-* .zip ../
61
+ tar -cvzf ../storm-$RELEASE .tar.gz ./
62
+
59
63
cd ..
60
- mv _release/storm- * .zip .
64
+
61
65
rm -rf _release
62
66
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def get_config_opts():
39
39
if not os .path .exists (STORM_DIR + "/RELEASE" ):
40
40
print "******************************************"
41
41
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 "\n You can download a Storm release at https ://github.com/nathanmarz/storm/ downloads"
42
+ print "\n You can download a Storm release at http ://storm-project.net/ downloads.html "
43
43
print "******************************************"
44
44
sys .exit (1 )
45
45
You can’t perform that action at this time.
0 commit comments