Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
Use bundle exec to build slideshow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennifer Hickey committed May 7, 2012
1 parent b9c278b commit 41db17e
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 21 deletions.
6 changes: 3 additions & 3 deletions apis/make.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/apis;
slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/apis/mobile;
slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/apis/pdf;
bundle exec slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/apis;
bundle exec slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/apis/mobile;
bundle exec slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/apis/pdf;
6 changes: 3 additions & 3 deletions bootcamp/make.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/bootcamp;
slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/bootcamp/mobile;
slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/bootcamp/pdf;
bundle exec slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/bootcamp;
bundle exec slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/bootcamp/mobile;
bundle exec slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/bootcamp/pdf;
7 changes: 4 additions & 3 deletions ci/make.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/ci;
slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/ci/mobile;
slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/ci/pdf;
bundle exec slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/ci;
bundle exec slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/ci/mobile;
bundle exec slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/ci/pdf;

6 changes: 3 additions & 3 deletions erlang/make.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/erlang;
slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/erlang/mobile;
slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/erlang/pdf;
bundle exec slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/erlang;
bundle exec slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/erlang/mobile;
bundle exec slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/erlang/pdf;
6 changes: 3 additions & 3 deletions mobile/make.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rm -rf ../output/public/mob;
slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/mob;
slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/mob/mobile;
slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/mob/pdf;
bundle exec slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/mob;
bundle exec slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/mob/mobile;
bundle exec slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/mob/pdf;
6 changes: 3 additions & 3 deletions mongodb/make.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/mongodb;
slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/mongodb/mobile;
slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/mongodb/pdf;
bundle exec slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/mongodb;
bundle exec slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/mongodb/mobile;
bundle exec slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/mongodb/pdf;
6 changes: 3 additions & 3 deletions ruby/make.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/ruby;
slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/ruby/mobile;
slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/ruby/pdf;
bundle exec slideshow -t ../templates/deck.js/deck.js.txt index.md -o ../output/public/ruby;
bundle exec slideshow -t ../templates/mobile/s6.txt index.md -o ../output/public/ruby/mobile;
bundle exec slideshow -t ../templates/s6/s6.txt index.md -o ../output/public/ruby/pdf;

0 comments on commit 41db17e

Please sign in to comment.