update_distfiles: remove old .boto file check

The config may be located other places these days.
This commit is contained in:
Michael Marineau 2016-03-09 13:10:55 -08:00
parent d723eebe45
commit ff29c10f7a

View File

@ -90,9 +90,6 @@ download_mirror() {
}
if [[ ${FLAGS_download} -eq ${FLAGS_TRUE} ]]; then
if [[ ! -f "$HOME/.boto" ]]; then
die_notrace "Please run gsutil config to create ~/.boto"
fi
for repo in "$@"; do
download_mirror "$repo"
done
@ -111,9 +108,6 @@ if [[ ${FLAGS_dry_run} == ${FLAGS_TRUE} ]]; then
fi
if [[ ${FLAGS_upload} -eq ${FLAGS_TRUE} ]]; then
if [[ ! -f "$HOME/.boto" ]]; then
die_notrace "Please run gsutil config to create ~/.boto"
fi
for repo in "$@"; do
upload_mirror "$repo"
done