the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Suppress mv stderr and fallback to sudo

Group the mv command so its stderr is redirected to /dev/null, allowing
the fallback sudo mv to run only if the first move fails. This avoids
leaking error output while preserving privilege escalation when needed.

+1 -1
+1 -1
install.sh
··· 78 78 fi 79 79 fi 80 80 else 81 - mv /tmp/pocketenv $INSTALL_DIR > /dev/null || sudo mv /tmp/pocketenv $INSTALL_DIR 81 + { mv /tmp/pocketenv $INSTALL_DIR 2>/dev/null; } || sudo mv /tmp/pocketenv $INSTALL_DIR 82 82 fi 83 83 84 84 # Clean up temporary files