diff --git a/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx b/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx
index df1c2effe..ef92bb63a 100644
--- a/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx
+++ b/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx
@@ -475,12 +475,6 @@ If the same `IMPL_SALT` is used to deploy the same contracts twice, the second d
**You can generate a new `IMPL_SALT` by running `direnv allow` anywhere in the Optimism Monorepo.**
-{
Generate contract artifacts
}
-
-```bash
-forge script scripts/Deploy.s.sol:Deploy --sig 'sync()' --rpc-url $L1_RPC_URL
-```
-
## Generate the L2 config files
@@ -508,7 +502,7 @@ Now you'll generate the `genesis.json` and `rollup.json` files within the `op-no
```bash
go run cmd/main.go genesis l2 \
--deploy-config ../packages/contracts-bedrock/deploy-config/getting-started.json \
- --deployment-dir ../packages/contracts-bedrock/deployments/getting-started/ \
+ --l1-deployments ../packages/contracts-bedrock/deployments/getting-started/.deploy \
--outfile.l2 genesis.json \
--outfile.rollup rollup.json \
--l1-rpc $L1_RPC_URL