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.

Create $HOME/.local/bin before tigrisfs download

+6 -3
+1
apps/sandbox/src/providers/daytona/mod.ts
··· 100 100 async mount(path: string, prefix?: string): Promise<void> { 101 101 const VERSION = "v1.2.1"; 102 102 const ARCH = "amd64"; 103 + await this.sh`mkdir -p $HOME/.local/bin`; 103 104 await this 104 105 .sh`command -v tigrisfs || ARCH=amd64 && curl -L "https://github.com/tigrisdata/tigrisfs/releases/download/${VERSION}/tigrisfs_${VERSION.replace("v", "")}_linux_${ARCH}.tar.gz" -o /tmp/tigrisfs.tar.gz`; 105 106 await this
+1
apps/sandbox/src/providers/deno/mod.ts
··· 111 111 async mount(path: string, prefix?: string): Promise<void> { 112 112 const VERSION = "v1.2.1"; 113 113 const ARCH = "amd64"; 114 + await this.sh`mkdir -p $HOME/.local/bin`; 114 115 await this 115 116 .sh`command -v tigrisfs || ARCH=amd64 && curl -L "https://github.com/tigrisdata/tigrisfs/releases/download/${VERSION}/tigrisfs_${VERSION.replace("v", "")}_linux_${ARCH}.tar.gz" -o /tmp/tigrisfs.tar.gz`; 116 117 await this
+4 -3
apps/sandbox/src/providers/vercel/mod.ts
··· 90 90 async mount(path: string, prefix?: string): Promise<void> { 91 91 const VERSION = "v1.2.1"; 92 92 const ARCH = "amd64"; 93 + await this.sh`mkdir -p $HOME/.local/bin`; 93 94 await this 94 95 .sh`command -v tigrisfs || ARCH=amd64 && curl -L "https://github.com/tigrisdata/tigrisfs/releases/download/${VERSION}/tigrisfs_${VERSION.replace("v", "")}_linux_${ARCH}.tar.gz" -o /tmp/tigrisfs.tar.gz`; 95 96 await this 96 - .sh`command -v tigrisfs || tar -xzf /tmp/tigrisfs.tar.gz -C $HOME/.local/bin`; 97 + .sh`command -v tigrisfs || tar -xzf /tmp/tigrisfs.tar.gz -C ~/.local/bin`; 97 98 await this.sh`command -v tigrisfs || rm -rf /tmp/tigrisfs.tar.gz`; 98 - await this.sh`command -v tigrisfs || chmod +x $HOME/.local/bin/tigrisfs`; 99 + await this.sh`command -v tigrisfs || chmod +x ~/.local/bin/tigrisfs`; 99 100 await this 100 - .sh`cp $HOME/.local/bin/tigrisfs /usr/bin || sudo cp $HOME/.local/bin/tigrisfs /usr/bin || true`; 101 + .sh`cp ~/.local/bin/tigrisfs /usr/bin || sudo cp ~/.local/bin/tigrisfs /usr/bin || true`; 101 102 await this.sh`mkdir -p ${path} || sudo mkdir -p ${path}`; 102 103 103 104 await this.mkdir(path);