@misterhuydo/sentinel 1.0.11 → 1.0.12
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/.cairn/session.json +2 -2
- package/lib/generate.js +1 -1
- package/package.json +1 -1
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-
|
|
3
|
-
"checkpoint_at": "2026-03-
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-21T17:02:51.501Z",
|
|
3
|
+
"checkpoint_at": "2026-03-21T17:02:51.502Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/lib/generate.js
CHANGED
|
@@ -112,7 +112,7 @@ for project_dir in "$WORKSPACE"/*/; do
|
|
|
112
112
|
|
|
113
113
|
# Must have at least one repo-config with a valid GitHub REPO_URL
|
|
114
114
|
valid_repo=false
|
|
115
|
-
for props in "$project_dir/config/repo-configs/"*.properties
|
|
115
|
+
for props in "$project_dir/config/repo-configs/"*.properties; do
|
|
116
116
|
[[ -f "$props" ]] || continue
|
|
117
117
|
if grep -qE "^REPO_URL[[:space:]]*=[[:space:]]*(git@github\.com:|https://github\.com/)" "$props"; then
|
|
118
118
|
valid_repo=true
|