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.

Use sudo fallback for mv on non-Linux

+4 -4
+4 -4
install.sh
··· 71 71 if [ "$LOCAL" -eq 1 ]; then 72 72 mv /tmp/pocketenv $LOCAL_DIR 73 73 else 74 - if command -v sudo >/dev/null 2>&1; then 74 + if command -v sudo >/dev/null 2>&1; then 75 75 sudo mv /tmp/pocketenv $INSTALL_DIR 76 - else 76 + else 77 77 mv /tmp/pocketenv $INSTALL_DIR 78 - fi 78 + fi 79 79 fi 80 80 else 81 - mv /tmp/pocketenv $INSTALL_DIR 81 + mv /tmp/pocketenv $INSTALL_DIR || sudo mv /tmp/pocketenv $INSTALL_DIR 82 82 fi 83 83 84 84 # Clean up temporary files