Skip to content

Commit

Permalink
Remove superfluous semicolons in docs CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
bilderbuchi committed Aug 20, 2015
1 parent a82a42a commit 58e8571
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions scripts/ci/docs/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
set -ev
echo "Building OF documentation"
ROOT=${TRAVIS_BUILD_DIR:-"$( cd "$(dirname "$0")/../../.." ; pwd -P )"}
cd $ROOT/scripts/ofDocGenerator;
npm run start;
cd $ROOT/scripts/ofDocGenerator
npm run start
12 changes: 6 additions & 6 deletions scripts/ci/docs/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
set -ev
echo "Installing documentation dependencies"
ROOT=${TRAVIS_BUILD_DIR:-"$( cd "$(dirname "$0")/../../.." ; pwd -P )"}
gem install sass --version "=3.2.12";
gem install compass --version "=0.12.2";
cd $ROOT/scripts;
git clone https://github.com/halfdanJ/ofDocGenerator;
cd ofDocGenerator;
npm install;
gem install sass --version "=3.2.12"
gem install compass --version "=0.12.2"
cd $ROOT/scripts
git clone https://github.com/halfdanJ/ofDocGenerator
cd ofDocGenerator
npm install

0 comments on commit 58e8571

Please sign in to comment.