ocket8888 commented on code in PR #7584: URL: https://github.com/apache/trafficcontrol/pull/7584#discussion_r1237413089
########## docs/Makefile: ########## @@ -18,11 +18,21 @@ # under the License. # +ifeq ($(OS),Windows_NT) + T3C_DIR_SEP := \\ + RM := del /s /q + PY := python +else + T3C_DIR_SEP := / + RM := rm -rf Review Comment: Right, but you don't need to define it because [`RM` is an "implicit variable"](https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html#index-RM) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@trafficcontrol.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org