Skip to content

Commit 7a488f8

Browse files
authored
Merge branch 'main' into workflow/next-js
2 parents 7a32c22 + 3c61a50 commit 7a488f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

workflows/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ fn write_workflows_function(
103103
/// }
104104
/// ```
105105
fn write_workflow(workflow: Workflow, file_name: &str) -> Result<()> {
106-
let module = std::fs::File::create(&format!("src/generated_workflows/{}.rs", file_name))?;
106+
let module = std::fs::File::create(format!("src/generated_workflows/{}.rs", file_name))?;
107107

108108
writeln!(&module, "use warp_workflows_types::*;")?;
109109
writeln!(&module, r#"pub fn workflow() -> Workflow {{"#)?;

0 commit comments

Comments
 (0)