From 2f302b54a75f849666663f64d34dac3669dcf1dd Mon Sep 17 00:00:00 2001 From: Ernest W Durbin III Date: Tue, 28 Jan 2020 16:29:55 -0500 Subject: [PATCH 1/2] bpo-37860: Update netlify.toml Testing netlify, attempts to deploy "Doc/Doc/build/html" and fails with error: ``` 4:21:33 PM: failed during stage 'building site': Deploy directory 'Doc/Doc/build/html' does not exist ``` Despite netlify docs saying "If a base directory has been specified, include it in the publish directory path." for the publish key. Opening this PR to test if this resolves the issue... and test the preview hook. --- netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index 387c8f954ada3c..59305f49356dcb 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,4 +1,4 @@ [build] base = "Doc/" command = "make html" - publish = "Doc/build/html" \ No newline at end of file + publish = "build/html" From dfe27d1f4e37ffcbad29e805032adedf26e313de Mon Sep 17 00:00:00 2001 From: Ernest W Durbin III Date: Tue, 28 Jan 2020 16:40:07 -0500 Subject: [PATCH 2/2] empty commit to test netlify rebuild