From ff29c10f7ac7a1398ecb7bbdc7f48d0a47a9c13b Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Wed, 9 Mar 2016 13:10:55 -0800 Subject: [PATCH] update_distfiles: remove old .boto file check The config may be located other places these days. --- update_distfiles | 6 ------ 1 file changed, 6 deletions(-) diff --git a/update_distfiles b/update_distfiles index 0eceea8b92..4bcc56e487 100755 --- a/update_distfiles +++ b/update_distfiles @@ -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