chore: use bash instead of sh syntax highlighting
Some checks are pending
CI / build-nix (push) Waiting to run
CI / deploy (push) Blocked by required conditions

This commit is contained in:
Youwen Wu 2024-11-01 12:19:50 -07:00
parent c708ab504f
commit 394718bcd4
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -14,7 +14,7 @@ you know what you are doing.
Allow the `.envrc`: Allow the `.envrc`:
```sh ```bash
direnv allow direnv allow
``` ```
@ -28,7 +28,7 @@ Here's how to do it locally.
First, we need to build the site. Run First, we need to build the site. Run
```sh ```bash
hakyll-site build hakyll-site build
# sometimes, we need to ignore the cache if things aren't working # sometimes, we need to ignore the cache if things aren't working
@ -51,7 +51,7 @@ In the directory, there is a `node_modules` symlink to
`result/lib/node_modules`. If we build the `nodeDeps` package, the `result/lib/node_modules`. If we build the `nodeDeps` package, the
`node_modules` will be made available at this path. So, run the following: `node_modules` will be made available at this path. So, run the following:
```sh ```bash
nix build .#nodeDeps nix build .#nodeDeps
``` ```
@ -61,7 +61,7 @@ need to re-run the above command or else node_modules will not be accessible.
Finally, run the following to generate the bundled CSS and JS files. Finally, run the following to generate the bundled CSS and JS files.
``` ```bash
rollup -c rollup -c
``` ```