You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let image = format!("{repo}/{image_base_name}:{product_version}-stackable{stackable_version}",);
While it will probably work if users add a / themselves to the repo it would not be unheard of to cause trouble.
We should therefore only conditionally append the slash.
This behavior is documented in our docs and references this issue so as part of fixing this issue those docs need to be adjusted as well.
Slash is only appended when repo does not already end with a slash
Documentation is updated to remove the reference to this issue
The text was updated successfully, but these errors were encountered:
Currently a slash is always appended to the repo.
While it will probably work if users add a
/
themselves to the repo it would not be unheard of to cause trouble.We should therefore only conditionally append the slash.
This behavior is documented in our docs and references this issue so as part of fixing this issue those docs need to be adjusted as well.
repo
does not already end with a slashThe text was updated successfully, but these errors were encountered: