Skip to content

Commit

Permalink
Add /releases dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-mig committed Sep 25, 2014
1 parent ff42ee6 commit 9dcee81
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Expand Up @@ -130,4 +130,7 @@ com_crashlytics_export_strings.xml
# sftp configuration file
sftp-config.json

dist/


dist/
releases/
10 changes: 5 additions & 5 deletions Makefile
Expand Up @@ -19,14 +19,14 @@ clean:

rm -rf $(distdir)/*

pack:
cd $(distdir) && zip -9 -r ../webboost-$(shell cat $(distdir)/manifest.json | node -pe "JSON.parse(require('fs').readFileSync('/dev/stdin').toString()).version").zip * -x *.DS_Store*
pack: all
cd $(distdir) && zip -9 -r ../releases/webboost-$(shell cat $(distdir)/manifest.json | node -pe "JSON.parse(require('fs').readFileSync('/dev/stdin').toString()).version").zip * -x *.DS_Store*

patch: all
patch:
./.utils/bump patch ./

minor: all
minor:
./.utils/bump minor ./

major: all
major:
./.utils/bump major ./

0 comments on commit 9dcee81

Please sign in to comment.