From 8cf5cefb234491def0a66001607df7b916eb7c90 Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Tue, 17 Mar 2026 16:02:21 +0000 Subject: [PATCH] Fix. --- datashuttle/datashuttle_class.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/datashuttle/datashuttle_class.py b/datashuttle/datashuttle_class.py index e40401c47..492dc8cfb 100644 --- a/datashuttle/datashuttle_class.py +++ b/datashuttle/datashuttle_class.py @@ -1219,6 +1219,11 @@ def make_config_file( # For backward compatibility connection_method = "local_only" + if connection_method != "local_only": + # This will raise an error here, to ensure config + # is not saved at all if it cannot be set up + rclone.prompt_rclone_download_if_does_not_exist() + if self._config_path.is_file(): utils.log_and_raise_error( "A config file already exists for this project. "