From d9facdf6cb38746ceafec0c2587b3c4e9138ddf8 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 23 Feb 2026 14:51:16 +0100 Subject: [PATCH] add one missing single quote --- installer/src/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/src/connection.rs b/installer/src/connection.rs index 575112f..e5cd844 100644 --- a/installer/src/connection.rs +++ b/installer/src/connection.rs @@ -133,7 +133,7 @@ pub async fn setup_data_directory(conn: &mut C, data_dir: & // XXX: DeviceConnection::run_command does not expose the exit code of the ran command. It // probably should, or a utility for it should exist? let mv_output = conn - .run_command(&format!("mv {old_source} '{data_dir}' && echo MV_OK")) + .run_command(&format!("mv '{old_source}' '{data_dir}' && echo MV_OK")) .await?; if mv_output.contains("MV_OK") { println!("ok");