portable-agent-layer 0.8.0 → 0.8.1
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
CHANGED
|
@@ -183,10 +183,7 @@ export function getUpdateNotice(): string | null {
|
|
|
183
183
|
const cache = JSON.parse(readFileSync(fp, "utf-8")) as UpdateCache;
|
|
184
184
|
if (!cache.available) return null;
|
|
185
185
|
|
|
186
|
-
|
|
187
|
-
return `📦 Update available: ${cache.current} → ${cache.latest} (git pull)`;
|
|
188
|
-
}
|
|
189
|
-
return `📦 Update available: ${cache.current} → ${cache.latest} (bun update -g portable-agent-layer)`;
|
|
186
|
+
return `📦 Update available: ${cache.current} → ${cache.latest} (pal cli update)`;
|
|
190
187
|
} catch {
|
|
191
188
|
return null;
|
|
192
189
|
}
|