-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support package names shorter than 3 characters #119
Comments
unless you see an obvious rationale for keeping that limitation, I'd propose simply putting a PR up for adjusting that limit (unless it's not straightforward) |
Yeah, this should be a very easy fix. I will add a PR for it shortly. I wanted to add the "Good first issue" label to this issue in case anyone wanted to try it out, but I can't. 😕 |
rebornplusplus
added a commit
to rebornplusplus/chisel
that referenced
this issue
Feb 8, 2024
This commit adds support for package names with a minimum length of two. Previously chisel only supported a minimum length of 3. The limit on the slice name is kept unchanged. Fixes canonical#119.
rebornplusplus
added a commit
to rebornplusplus/chisel
that referenced
this issue
Feb 8, 2024
This commit adds support for package names with a minimum length of two. Previously chisel only supported a minimum length of 3. The limit on the slice name is kept unchanged. Fixes canonical#119.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Chisel does not currently support package names shorter than 3 characters. This is controlled by a few regular expressions specified in the setup package.
chisel/internal/setup/setup.go
Lines 245 to 247 in 11a324c
However, this means that packages like jq are not currently supported. Per the debian policy, the minimum length of a package's name can be 2.
Related: canonical/chisel-releases#116
The text was updated successfully, but these errors were encountered: