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.
26 lines
644 B
26 lines
644 B
#!/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;} |
|
PROJECT_DIR=$(pwd) |
|
export PROJECT_DIR |
|
|
|
WORKSPACE=$HOME/workspace |
|
mkdir -p "$WORKSPACE" |
|
|
|
if prompt_yn "Install Salesforce tools?" ; then |
|
recipe 'salesforce' |
|
fi |
|
|
|
### Show the Finished banner |
|
finished |
|
|
|
# vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
|
|
|