From ae0b15615f934ff0a69da94d60bf49892019fba7 Mon Sep 17 00:00:00 2001 From: Jim Angel Date: Wed, 26 Jun 2019 16:59:20 -0500 Subject: [PATCH] (temp) fix broken site generation (#15133) In prod we fixed this with: https://github.com/kubernetes/website/pull/14252, release branch has a different build command 'make non-prod-build` vs `make prod-build` and we need to address that with this PR. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6543bdc417..8e27d08956 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ check-headers-file: production-build: check-hugo-versions build check-headers-file ## Build the production site and ensure that noindex headers aren't added -non-production-build: test-examples check-hugo-versions ## Build the non-production site, which adds noindex headers to prevent indexing +non-production-build: check-hugo-versions ## Build the non-production site, which adds noindex headers to prevent indexing hugo --enableGitInfo serve: ## Boot the development server.