@svayam-opensource/prj 0.5.7 → 0.5.8
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/package.json +1 -1
- package/scripts/create-task.sh +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@svayam-opensource/prj",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
4
4
|
"description": "Governed Agentic Development Framework CLI (prj). A bash CLI wrapped for npm; operates on a governance workspace resolved via $ADF_WORKSPACE or the nearest org-config.yaml. Runtime prerequisites (not npm deps): bash, git, gh, yq, python3 (use Git Bash on Windows).",
|
|
5
5
|
"bin": {
|
|
6
6
|
"prj": "bin/prj"
|
package/scripts/create-task.sh
CHANGED
|
@@ -26,7 +26,7 @@ ASSIGNEE="${3:-}"
|
|
|
26
26
|
|
|
27
27
|
# Split the (comma-separated) issue list into an array, trimming whitespace.
|
|
28
28
|
ISSUE_URLS=()
|
|
29
|
-
while IFS= read -r __u; do
|
|
29
|
+
while IFS= read -r __u || [[ -n "$__u" ]]; do
|
|
30
30
|
__u="${__u#"${__u%%[![:space:]]*}"}"; __u="${__u%"${__u##*[![:space:]]}"}"
|
|
31
31
|
[[ -n "$__u" ]] && ISSUE_URLS+=("$__u")
|
|
32
32
|
done < <(printf '%s' "$ISSUE_ARG" | tr ',' '\n')
|