mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 16:16:31 +00:00
25 lines
396 B
Bash
25 lines
396 B
Bash
#! /bin/bash
|
|
|
|
install_atf=false
|
|
# if prompt_yn "Install Abuse the Force?" ; then
|
|
# install_atf=true
|
|
# fi
|
|
|
|
install_fcli=true
|
|
# if prompt_yn "Install Force Cli?" ; then
|
|
# install_fcli=true
|
|
# fi
|
|
|
|
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)"
|
|
done
|
|
|