shoestrap/test-cookbook

27 lines
644 B
Plaintext
Raw Permalink Normal View History

2013-08-08 03:23:13 +00:00
#!/bin/bash
# Initialization - DO NOT REMOVE
. helpers/initialize
##############################################################
### Customizations start here ################################
##############################################################
# Get current directory for future use in links
cd "$(dirname "$0")" || { echo "Could not change directory to $0"; exit 1;}
2013-08-08 03:23:13 +00:00
PROJECT_DIR=$(pwd)
export PROJECT_DIR
2013-08-08 03:23:13 +00:00
WORKSPACE=$HOME/workspace
mkdir -p "$WORKSPACE"
2013-08-08 03:23:13 +00:00
if prompt_yn "Install Salesforce tools?" ; then
recipe 'salesforce'
fi
### Show the Finished banner
finished
# vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab