Replies: 1 comment
-
As per 84efdc8, the rebuild feature no longer exists. We added a For instance, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to fix the rebuild option of lfc (see #521 and #524). While working on this, it occurred to me that the rebuild causes quite some trouble. While we can certainly fix the discussed issues, the whole thing seems to be pretty fragile. And we need to be aware that this mechanism only works in a developer setup. If we take a pre-built lfc and run
lfc -r
bad things will happen.I am thinking that we should let gradle handle the building altogether (it's what it is made for after all). We already have the
buildLfc
target for gradle. So instead of usinglfc -r
we could simply do./gradlew --runLfc --args
, which will rebuild lfc and run it.What do you think?
Beta Was this translation helpful? Give feedback.
All reactions