We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a32c22 + 3c61a50 commit 7a488f8Copy full SHA for 7a488f8
1 file changed
workflows/build.rs
@@ -103,7 +103,7 @@ fn write_workflows_function(
103
/// }
104
/// ```
105
fn write_workflow(workflow: Workflow, file_name: &str) -> Result<()> {
106
- let module = std::fs::File::create(&format!("src/generated_workflows/{}.rs", file_name))?;
+ let module = std::fs::File::create(format!("src/generated_workflows/{}.rs", file_name))?;
107
108
writeln!(&module, "use warp_workflows_types::*;")?;
109
writeln!(&module, r#"pub fn workflow() -> Workflow {{"#)?;
0 commit comments