Skip to content

Commit d0cfb6f

Browse files
author
Sam Kleinman
committed
build: fixing Darwin issues
1 parent a8913e4 commit d0cfb6f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ push:publish
7070
@echo [build]: deployed a new build of the $(current-branch) branch of the Manual.
7171
push-all:publish
7272
@echo [build]: copying the full docs site to the web servers.
73-
$(MAKE) MODE='push' push-dc1 push-dc2
73+
$(MAKE) MODE='push' push-all-dc1 push-all-dc2
7474
@echo [build]: deployed a new build of the full Manual.
7575

7676
publish:initial-dependencies
@@ -106,7 +106,7 @@ endif
106106

107107
initial-dependencies:source/about.txt $(public-branch-output) $(public-branch-output)/MongoDB-Manual.epub
108108
@echo [build]: running the publication routine for the $(manual-branch) branch of the Manual.
109-
static-components:$(public-output)/index.html $(public-output)/10gen-gpg-key.asc $(public-branch-output)/tutorials $(public-branch-output)/reference/methods $(public-branch-output)/.htaccess $(public-branch-output)/release.txt $(public-output)/osd.xml
109+
static-components:$(public-branch-output) $(public-output)/index.html $(public-output)/10gen-gpg-key.asc $(public-branch-output)/tutorials $(public-branch-output)/reference/methods $(public-branch-output)/.htaccess $(public-branch-output)/release.txt $(public-output)/osd.xml
110110
@echo [build]: building and migrating all non-Sphinx components of the build.
111111
sphinx-components:$(public-branch-output)/ $(public-branch-output)/sitemap.xml.gz $(public-branch-output)/MongoDB-Manual.pdf $(public-branch-output)/single $(public-branch-output)/single/index.html
112112
@echo [build]: running the publication routine for all Sphinx Components of the Manual Build.
@@ -180,9 +180,11 @@ $(public-branch-output)/release.txt:$(public-output)/manual
180180
$(public-output)/manual:
181181
@bin/create-link $(manual-branch) manual $@
182182
$(public-output):
183-
-mkdir -p $@
183+
@mkdir -p $@
184+
@echo [build]: created $@
184185
$(public-branch-output):$(public-output)
185-
-mkdir -p $@
186+
@mkdir -p $@
187+
@echo [build]: created $@
186188

187189
$(public-output)/index.html:themes/docs.mongodb.org/index.html
188190
@cp $< $@

0 commit comments

Comments
 (0)