#!/bin/sh

set -e

LIST="2 api assets bower_components bower.json .bowerrc CNAME composer.json _config.yml default favicon.ico fonts Gemfile .gitignore global Gruntfile.js help index.html package.json tests .travis.yml"

for i in $LIST ; do
	rm -rf $i
done

for i in `find . -iname 'bootstrap.min.css'` ; do
	rm -f $i
done

for i in `find . -iname 'index.html'` ; do
	rm -f $i
done

exit 0
