Skip to content

Commit

Permalink
[examples] Fix jekyll readme build command (#3639)
Browse files Browse the repository at this point in the history
Fixes #3634
  • Loading branch information
styfle authored and kodiakhq[bot] committed Jan 22, 2020
1 parent adb32a0 commit 56ae93a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/jekyll/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ You can deploy your new Jekyll project with a single command from your terminal
$ now
```

### Example Changes
### Build Command

This example adds a `package.json` file with the following:
The default build command is `jekyll build`.

If you wish to change the build command, add a `package.json` file with the following:

```json
{
"private": true,
"scripts": {
"build": "jekyll build && mv _site public"
"build": "jekyll build"
}
}
```

This instructs ZEIT Now to build the Jekyll website and move the output to the public directory.

1 comment on commit 56ae93a

@vercel
Copy link

@vercel vercel bot commented on 56ae93a Jan 22, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.