From 806741b6fa8ef60e25d5d14d9dddc5cef1068b8a Mon Sep 17 00:00:00 2001 From: Alex Hamilton Date: Wed, 29 Jul 2020 12:51:12 -0500 Subject: [PATCH] Fix remote_topgrade_path example value (#486) The `remote_topgrade_path` expects a string, not an array. --- config.example.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.example.toml b/config.example.toml index f983b346..c167fa6a 100644 --- a/config.example.toml +++ b/config.example.toml @@ -23,7 +23,7 @@ #ssh_arguments = "-o ConnectTimeout=2" # Path to Topgrade executable on remote machines -#remote_topgrade_path = [".cargo/bin/topgrade"] +#remote_topgrade_path = ".cargo/bin/topgrade" # Arguments to pass tmux when pulling Repositories #tmux_arguments = "-S /var/tmux.sock"