mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 16:36:32 +00:00
24 lines
399 B
Bash
Executable File
24 lines
399 B
Bash
Executable File
#! /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
|