Skip to content

Commit

Permalink
fix: Makefile typo (#1181)
Browse files Browse the repository at this point in the history
# Description

Tiny fix to change a typo from `pod` to `prod`.

## Related Issue

[1070](#1070) - originally the
issue was for an error in building the docs, but was unable to replicate
the issue and marking it as closed. During investigation found this
typo.

## Checklist

- [x] I have read the [contributing
documentation](https://retina.sh/docs/contributing).
- [x] I signed and signed-off the commits (`git commit -S -s ...`). See
[this
documentation](https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification)
on signing commits.
- [x] I have correctly attributed the author(s) of the code.
- [x] I have tested the changes locally.
- [x] I have followed the project's style guidelines.
- [x] I have updated the documentation, if necessary.
- [x] I have added tests, if applicable.

---

Please refer to the [CONTRIBUTING.md](../CONTRIBUTING.md) file for more
information on how to contribute to this project.

Signed-off-by: Kamil <[email protected]>
  • Loading branch information
kamilprz authored Jan 2, 2025
1 parent 87d2196 commit 6f6464f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ docs:
echo $(PWD)
docker run -it -p 3000:3000 -v $(PWD):/retina -w /retina/ node:20-alpine sh ./site/start-dev.sh

.PHONY: docs-pod
.PHONY: docs-prod
docs-prod:
docker run -i -p 3000:3000 -v $(PWD):/retina -w /retina/ node:20-alpine npm install --prefix site && npm run build --prefix site

Expand Down

0 comments on commit 6f6464f

Please sign in to comment.