ksud: Fix script exec

This commit is contained in:
tiann
2023-02-03 14:26:19 +08:00
parent 6239662a7f
commit 8ee00839dc

View File

@@ -240,7 +240,7 @@ pub fn exec_post_fs_data() -> Result<()> {
continue;
}
exec_script(path, true)?;
exec_script(&post_fs_data, true)?;
}
Ok(())
@@ -289,7 +289,7 @@ pub fn exec_services() -> Result<()> {
continue;
}
exec_script(path, false)?;
exec_script(&service, false)?;
}
Ok(())