summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2026-04-10 14:38:40 +0200
committerDaniel Weipert <git@mail.dweipert.de>2026-04-10 14:38:40 +0200
commitc1a4aa48edaf7658554d574031e7e885913874eb (patch)
tree5ba4f5003669732f1d09787039d136f3c61c20dc
parentef2c62fa93ba9bf0d8bd0c0d497708bcd8a8173a (diff)
fix directory path join callHEADmain
-rwxr-xr-xrclone-ide2
1 files changed, 1 insertions, 1 deletions
diff --git a/rclone-ide b/rclone-ide
index b35020c..33243de 100755
--- a/rclone-ide
+++ b/rclone-ide
@@ -239,7 +239,7 @@ def command_copy(options: Mapping[str, Any]) -> None:
# build path to directory for local and remote
local_directory_path = options.directory
if options.directory:
- if not os.path.exists(os.join(os.getcwd(), local_path, options.directory)):
+ if not os.path.exists(os.path.join(os.getcwd(), local_path, options.directory)):
raise FileNotFoundError("Local directory missing")
cmd = [