Skip to content

Commit

Permalink
Fixed and documented mustache.sh submodule.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcrowley committed Nov 22, 2011
1 parent 86b98da commit 05ab959
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "mustache.sh"]
path = mustache.sh
url = git@github.com:rcrowley/mustache.sh.git
url = git://github.com:rcrowley/mustache.sh.git
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ Prerequisites:
### From source on Debian, Ubuntu, and Fedora

git clone git://github.com/devstructure/blueprint.git
cd blueprint && make && sudo make install
cd blueprint
git submodule update --init
make && sudo make install

### From source on CentOS and RHEL 5

Expand Down
29 changes: 16 additions & 13 deletions bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
echo "Paste the contents of ~/production.pem here and press ^D:" >&2
cat >"$HOME/production.pem"
chmod 600 "$HOME/production.pem"
if [ ! -f "$HOME/production.pem" ]
then
echo "Paste the contents of ~/production.pem here and press ^D:" >&2
cat >"$HOME/production.pem"
chmod 600 "$HOME/production.pem"
fi

apt-get -q update
sudo apt-get -q update

apt-get -q -y install \
build-essential \
git-core \
python python-setuptools \
ruby ruby-dev rubygems \
sudo apt-get -q -y install \
"build-essential" \
"git-core" \
"python" "python-setuptools" \
"ruby" "ruby-dev" "rubygems" \

gem install fpm
sudo gem install --no-rdoc --no-ri "fpm"

mkdir "$HOME/work"
mkdir -p "$HOME/work"
cd "$HOME/work"
git clone git://github.com/devstructure/blueprint.git
[ -d "blueprint" ] || git clone "git://github.com/devstructure/blueprint.git"
(cd "blueprint" && git submodule update --init)
git clone git://github.com/rcrowley/ronn.git -b dots
[ -d "ronn" ] || git clone "git://github.com/rcrowley/ronn.git" -b "dots"

0 comments on commit 05ab959

Please sign in to comment.