From 60a6fc076fb4a7f141f092e016c8d3cb21044532 Mon Sep 17 00:00:00 2001 From: Aidan Ranney Date: Wed, 16 Dec 2020 17:31:23 -0800 Subject: [PATCH] Revert git command in netlfy build steps --- netlify.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netlify.toml b/netlify.toml index 2600a36..092f5a0 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,13 +1,13 @@ [build] publish = "public" -command = "git submodule update --init --recursive --depth 1 && make production-build" +command = "make production-build" [build.environment] HUGO_VERSION = "0.79.0" NODE_VERSION = "12" [context.deploy-preview] -command = "git submodule update --init --recursive --depth 1 && make preview-build" +command = "make preview-build" [context.branch-deploy] -command = "git submodule update --init --recursive --depth 1 && make preview-build" +command = "make preview-build"