@misterhuydo/sentinel 1.0.36 → 1.0.37
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-21T21:
|
|
3
|
-
"checkpoint_at": "2026-03-21T21:
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-21T21:43:02.298Z",
|
|
3
|
+
"checkpoint_at": "2026-03-21T21:43:02.299Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
package/package.json
CHANGED
|
@@ -108,6 +108,11 @@ fetch_from_properties() {
|
|
|
108
108
|
return 0
|
|
109
109
|
fi
|
|
110
110
|
|
|
111
|
+
# Resolve relative KEY path relative to the props file's directory
|
|
112
|
+
if [[ "$KEY" != /* ]]; then
|
|
113
|
+
KEY="$(dirname "$(realpath "$props_file")")/$KEY"
|
|
114
|
+
fi
|
|
115
|
+
|
|
111
116
|
local SERVICE_NAME
|
|
112
117
|
SERVICE_NAME="$(basename "$props_file" .properties)"
|
|
113
118
|
REMOTE_SERVICE_USER="${REMOTE_SERVICE_USER:-$SERVICE_NAME}"
|