From 6f6464fe155854ee1606c1b201e30aaf2ec49e5d Mon Sep 17 00:00:00 2001 From: kamilprz <36544756+kamilprz@users.noreply.github.com> Date: Thu, 2 Jan 2025 14:49:52 +0000 Subject: [PATCH] fix: Makefile typo (#1181) # Description Tiny fix to change a typo from `pod` to `prod`. ## Related Issue [1070](https://github.com/microsoft/retina/issues/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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ed0a4e31e..50d3d19cae 100644 --- a/Makefile +++ b/Makefile @@ -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