Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
mcantelon committed May 16, 2024
1 parent 4a65f74 commit 75cb2b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion internal/activities/combine_premis.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ func CombinePREMISCopy(source_filepath string, destination_filepath string) (boo
CombinePREMISAddChildElements(dest_premis_element, source_premis_agent_elements)

dest_doc.Indent(2)
dest_doc.WriteToFile(destination_filepath)
err = dest_doc.WriteToFile(destination_filepath)
if err != nil {
panic("ZZZ")
}

return true, nil
}
Expand Down

0 comments on commit 75cb2b4

Please sign in to comment.