You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
401 B

#!/bin/bash
set -e
echo ""
echo " > installing gems into ./vendor/bundle"
bundle install --path vendor/bundle
if [[ -e "_config-local.yml" ]]; then
echo " > _config-local.yml present, skipping creation"
else
echo " > creating _config-local.yml"
cp _config-local.sample.yml _config-local.yml
fi
echo " > creating dummy API ref data file"
echo [] > _data/nav_api.json
echo " > done"
echo ""