More logging in getting scripts

This commit is contained in:
Richard Goodwin
2018-10-26 12:50:01 -05:00
parent 29466505f7
commit 965b3533a4

View File

@@ -132,8 +132,10 @@ function get_script () {
local name="$2" local name="$2"
local remote_path="${3:-}" local remote_path="${3:-}"
wget -O "$local_path/$name" https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/"$remote_path"/"$name" curl -o "$local_path/$name" https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/"$remote_path"/"$name"
# wget -O "$local_path/$name" https://raw.githubusercontent.com/"$REPO"/teslausb/"$BRANCH"/"$remote_path"/"$name"
chmod +x "$local_path/$name" chmod +x "$local_path/$name"
setup_progress "Downloaded $local_path/$name ..."
} }
function get_ancillary_setup_scripts () { function get_ancillary_setup_scripts () {
@@ -285,6 +287,8 @@ check_pushover_enabled
# Flash for Stage 3 headless (grab scripts) # Flash for Stage 3 headless (grab scripts)
headless_setup_progress_flash 2 headless_setup_progress_flash 2
setup_progress "Downloading additional setup scripts."
if [ ! -e /root/bin ] if [ ! -e /root/bin ]
then then
mkdir /root/bin mkdir /root/bin