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
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
When a tripartite dependency name contains hyphens -, the entries will only take effect if the hyphens - are replaced with underscores _.
[package]
name = "dev"
edition = "v0.10.0"
version = "0.0.1"
[dependencies]
my-dev = { path = "../../my-dev" } # hyphens in the name
[profile]
entries = ["../base/base.k", "main.k", "${my_dev:KCL_MOD}/base/base.k"] # replace it into underscores
2. What did you expect to see? (Required)
[package]
name = "dev"
edition = "v0.10.0"
version = "0.0.1"
[dependencies]
my-dev = { path = "../../my-dev" }
[profile]
entries = ["../base/base.k", "main.k", "${my-dev:KCL_MOD}/base/base.k"] # the same as the dependency name
3. What did you see instead (Required)
When a tripartite dependency name contains hyphens -, the entries will only take effect if the hyphens - are replaced with underscores _.
4. What is your KCL components version? (Required)
The main branch of kpm
The text was updated successfully, but these errors were encountered:
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
When a tripartite dependency name contains hyphens
-
, theentries
will only take effect if the hyphens-
are replaced with underscores_
.2. What did you expect to see? (Required)
3. What did you see instead (Required)
When a tripartite dependency name contains hyphens
-
, theentries
will only take effect if the hyphens-
are replaced with underscores_
.4. What is your KCL components version? (Required)
The main branch of kpm
The text was updated successfully, but these errors were encountered: