prizmkit 1.1.31 → 1.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bundled/VERSION.json
CHANGED
|
@@ -1002,14 +1002,14 @@ main() {
|
|
|
1002
1002
|
exit 1
|
|
1003
1003
|
fi
|
|
1004
1004
|
|
|
1005
|
-
# Validate .prizmkit/plans/feature-list.json is
|
|
1005
|
+
# Validate .prizmkit/plans/feature-list.json is under project root
|
|
1006
1006
|
local fl_dir
|
|
1007
1007
|
fl_dir="$(cd "$(dirname "$feature_list")" && pwd)"
|
|
1008
1008
|
local project_root
|
|
1009
1009
|
project_root="$(pwd)"
|
|
1010
|
-
if [[ "$fl_dir" != "$project_root" ]]; then
|
|
1011
|
-
log_warn "
|
|
1012
|
-
log_warn "Pipeline expects
|
|
1010
|
+
if [[ "$fl_dir" != "$project_root"/.prizmkit/plans && "$fl_dir" != "$project_root" ]]; then
|
|
1011
|
+
log_warn "feature-list.json is not under project root ($project_root), found at $fl_dir"
|
|
1012
|
+
log_warn "Pipeline expects feature-list.json at <project-root>/.prizmkit/plans/feature-list.json. Proceeding but results may be unstable."
|
|
1013
1013
|
fi
|
|
1014
1014
|
|
|
1015
1015
|
check_dependencies
|