We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 817283d commit 161b2b6Copy full SHA for 161b2b6
dgraph/self-hosted.mdx
@@ -333,7 +333,11 @@ fi
333
<Step title="Create Checksums">
334
```bash # Generate checksums for integrity verification cd migration_data find
335
. -type f -name "*.gz" -exec sha256sum {} \; > checksums.txt find . -type f
336
- -name "*.json" -exec sha256sum {} \; >> checksums.txt ```
+ ```bash
337
+ # Generate checksums for integrity verification
338
+ cd migration_data
339
+ find . -type f -name "*.gz" -exec sha256sum {} \; > checksums.txt
340
+ find . -type f -name "*.json" -exec sha256sum {} \; >> checksums.txt
341
</Step>
342
343
<Step title="Compress for Transfer">
0 commit comments