Skip to content

Commit

Permalink
chore(site generator): pass thru additional parameters i.e. —force
Browse files Browse the repository at this point in the history
  • Loading branch information
knalli committed Dec 21, 2013
1 parent 9fed6a3 commit e2d11e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions generate_site.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@

mkdir -p site/docs/en site/docs/ru site/docs/de site/docs/uk

grunt ngdocs
grunt ngdocs $@
grunt copy:logos
grunt copy:docs_assets
mv tmp/* site/docs/en/
rm -rf tmp

grunt ngdocs --lang=ru
grunt ngdocs --lang=ru $@
grunt copy:logos
grunt copy:docs_assets
mv tmp/* site/docs/ru
rm -rf tmp

grunt ngdocs --lang=de
grunt ngdocs --lang=de $@
grunt copy:logos
grunt copy:docs_assets
mv tmp/* site/docs/de
rm -rf tmp

grunt ngdocs --lang=uk
grunt ngdocs --lang=uk $@
grunt copy:logos
grunt copy:docs_assets
mv tmp/* site/docs/uk
Expand Down

0 comments on commit e2d11e9

Please sign in to comment.