fix indentation in install-buck macro

Change-Id: I1c6d3b9f1ca67c4a3acdb4dadc1f210b017a5384
This commit is contained in:
Khai Do 2014-02-20 20:54:53 -08:00
parent 522f4a2ded
commit 09e22d8927

View File

@ -244,13 +244,14 @@
name: install-buck
builders:
- shell: |
if [[ ! -d "buck" ]]
then
git clone https://gerrit.googlesource.com/buck
cd buck
git checkout 274acb17e9b6dc9ee60bc1371c47a7f49640c24c
ant
fi
#!/bin/bash -xe
if [[ ! -d "buck" ]]
then
git clone https://gerrit.googlesource.com/buck
cd buck
git checkout 274acb17e9b6dc9ee60bc1371c47a7f49640c24c
ant
fi
# ======================================================================