Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions yarn-project/cli/src/update/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ export async function update(

if (currentSandboxVersion && lt(currentSandboxVersion, targetSandboxVersion)) {
log(`
Sandbox is older than version ${targetSandboxVersion}. If running in docker update it with the following command then restart the container:
docker pull aztecprotocol/aztec-sandbox:latest
Once the container is restarted, run the \`aztec-cli update\` command again`);
Sandbox is older than version ${targetSandboxVersion}. If running via docker-compose, follow update instructions:
https://docs.aztec.network/dev_docs/cli/updating

Once the sandbox is updated, run the \`aztec-cli update\` command again`);
return;
}
}
Expand Down