content: Change build.sh file perms in Cloudflare hosting docs

This commit is contained in:
Joe Mooring
2025-08-20 06:41:04 -07:00
committed by GitHub
parent 0569c68cac
commit 82885415fa
@@ -28,15 +28,15 @@ Create a `wrangler.toml` file in the root of your project.
```toml {file="wrangler.toml" copy=true}
# Configure Cloudflare Worker
name = 'hosting-cloudflare-worker'
compatibility_date = '2025-07-31'
name = "hosting-cloudflare-worker"
compatibility_date = "2025-07-31"
[build]
command = './build.sh'
command = "chmod a+x build.sh && ./build.sh"
[assets]
directory = './public'
not_found_handling = '404-page'
directory = "./public"
not_found_handling = "404"
```
### Step 2