shoestrap/recipes/default/salesforce

24 lines
399 B
Plaintext
Raw Normal View History

2013-08-08 03:23:13 +00:00
#! /bin/bash
install_atf=false
2017-07-25 21:12:02 +00:00
# if prompt_yn "Install Abuse the Force?" ; then
# install_atf=true
# fi
2013-08-08 03:23:13 +00:00
2017-07-25 21:12:02 +00:00
install_fcli=true
# if prompt_yn "Install Force Cli?" ; then
# install_fcli=true
# fi
2013-08-08 03:23:13 +00:00
if $install_atf ; then
recipe 'abuse-the-force'
fi
if $install_fcli ; then
recipe 'force-cli'
fi
for f in "$DEFAULT_ASSETS_PATH"/* ; do
try_link "$f" "$USER_BIN/$(basename "$f")"
2013-08-08 03:23:13 +00:00
done