@xcanwin/manyoyo 5.10.4 → 5.10.6
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.
|
@@ -41,5 +41,5 @@ echo "[manyoyo] Agent CLI versions after update:"
|
|
|
41
41
|
print_agent_versions
|
|
42
42
|
|
|
43
43
|
npm_config_update_notifier=false npm cache clean --force --loglevel=error
|
|
44
|
-
rm -rf /tmp/* /var/tmp/* /var/log/apt /var/log/*.log /var/lib/apt/lists/* ~/.npm ~/.cache/node-gyp ~/.claude/plugins/cache ~/go/pkg/mod/cache
|
|
44
|
+
rm -rf /tmp/* /tmp/.[!.]* /tmp/..?* /var/tmp/* /var/tmp/.[!.]* /var/tmp/..?* /var/log/apt /var/log/*.log /var/lib/apt/lists/* ~/.npm ~/.cache/node-gyp ~/.claude/plugins/cache ~/go/pkg/mod/cache
|
|
45
45
|
rm -f /var/log/dpkg.log /var/log/bootstrap.log /var/lib/dpkg/status-old /var/cache/debconf/templates.dat-old
|
package/lib/image-build.js
CHANGED
|
@@ -478,7 +478,7 @@ async function updateAgentsInExistingImage(ctx, fullImageTag) {
|
|
|
478
478
|
const { RED, GREEN, YELLOW, BLUE, CYAN, NC } = ctx.colors;
|
|
479
479
|
const containerName = ctx.agentUpdateContainerName || createAgentUpdateContainerName();
|
|
480
480
|
let updateTargets = resolveAgentUpdateTargets(ctx.imageTool);
|
|
481
|
-
const updateScriptPath = path.join(ctx.rootDir, 'docker', 'res', 'update-agents.sh');
|
|
481
|
+
const updateScriptPath = path.join(ctx.rootDir, 'docker', 'res', 'agent', 'update-agents.sh');
|
|
482
482
|
const cleanupArgs = ['rm', '-f', containerName];
|
|
483
483
|
let imageConfig = {};
|
|
484
484
|
|