Skip to content

Commit 659e241

Browse files
committed
Ensure file path creation [deploy]
1 parent 477e0b9 commit 659e241

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/build/library/deploy.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ function deploy_qubolib!(index::QUBOLib.LibraryIndex)
8989
write(joinpath(QUBOLib.build_path(index), "NOTES.md"), release_notes)
9090

9191
@info "[QUBOLib] Generate Mirror release notes"
92-
92+
mirror_path = mkpath(joinpath(QUBOLib.build_path(index), "mirror"))
9393
mirror_notes = """
9494
# QUBOLib Data Mirror Release Notes
9595
9696
This release provides access to mirrored and preprocessed instances from other libraries.
9797
"""
9898

99-
write(joinpath(QUBOLib.build_path(index), "mirror", "NOTES.md"), mirror_notes)
99+
write(joinpath(mirror_path, "NOTES.md"), mirror_notes)
100100

101101
@info "[QUBOLib] Deployment done!"
102102

0 commit comments

Comments
 (0)