mweissdigchg commented on PR #19572: URL: https://github.com/apache/camel/pull/19572#issuecomment-3406207364
Please, see my comment here: https://github.com/apache/camel/pull/19540#issuecomment-3406062434 I think the main issue is that there are no camel-jbang release tags. `jbang app install --name camel camel@apache/camel/<release-tag>` is basically identical to `jbang app install --name camel https://github.com/apache/camel/blob/<release-tag>/dsl/camel-jbang/camel-jbang-main/dist/CamelJBang.java` It does nothing else than creating an executable bash script named `camel` with the following content: ``` #!/bin/sh exec jbang run https://github.com/apache/camel/blob/<release-tag>/dsl/camel-jbang/camel-jbang-main/dist/CamelJBang.java "$@" ``` That's what we use in the camel-jbang Docker image now, but with a commit id instead of the <release-tag> because we do not have such. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
