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
|
|
|
|
|
2019-11-14 18:20:42 +00:00
|
|
|
cd "$(dirname "$0")" || { echo "Could not change directory to $0"; exit 1;}
|
2013-08-08 03:23:13 +00:00
|
|
|
PROJECT_DIR=$(pwd)
|
2019-11-14 18:20:42 +00:00
|
|
|
export PROJECT_DIR
|
2013-08-08 03:23:13 +00:00
|
|
|
|
|
|
|
WORKSPACE=$HOME/workspace
|
2019-11-14 18:20:42 +00:00
|
|
|
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
|