diff --git a/bin/psyncup.py b/bin/psyncup.py index bbeea6c..ac287b2 100755 --- a/bin/psyncup.py +++ b/bin/psyncup.py @@ -11,11 +11,11 @@ CONFIG_NAME = ".psyncup.json" CONFIG_EXAMPLE = """\ { "ssh_remote": "emiliko@10.0.0.1", - "ssh_jump": "emiliko@178.54.2.3", "remote_dir": "/home/emiliko/.configs_pointer", "update_date": "2023-12-01_01:01:01_UTC", "exclude": [ ".git", + ".venv", "bin/rewritten_in_rust/target" ] }""" @@ -151,10 +151,6 @@ def build_commands(args, config): if args.dry_run: rsync_cmd.append("--dry-run") - if config.get("ssh_jump") is not None: - rsync_cmd.append("-e") - rsync_cmd.append(f"ssh -J {config['ssh_jump']}") - if config.get("exclude") is not None: for x in config["exclude"]: rsync_cmd.append(f"--exclude={x}")