Skip to content

Commit

Permalink
Fix testing via promoted goblint binary during release
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Nov 25, 2021
1 parent 9c3f0d0 commit 0e0ef7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dune
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
(target goblint)
(deps src/goblint.exe)
(action (copy src/goblint.exe goblint))
(mode (promote (until-clean))) ; replace existing file in source tree
(mode (promote (until-clean) (only goblint))) ; replace existing file in source tree, even if releasing (only overrides)
)

(rule
(target goblint.byte)
(deps src/goblint.bc)
(action (copy src/goblint.bc goblint.byte))
(mode (promote (until-clean))) ; replace existing file in source tree
(mode (promote (until-clean) (only goblint.byte))) ; replace existing file in source tree, even if releasing (only overrides)
)

0 comments on commit 0e0ef7a

Please sign in to comment.