From 396cd4825c01d8d548f0d9562f559838481b5949 Mon Sep 17 00:00:00 2001 From: Mike Pirog Date: Mon, 30 Sep 2024 15:01:01 -0400 Subject: [PATCH] fixed netlify specific mbv not pulling in the correct tags part 6 --- bin/mvb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mvb.js b/bin/mvb.js index 81d7c74f..b87879af 100755 --- a/bin/mvb.js +++ b/bin/mvb.js @@ -117,7 +117,7 @@ if (shallow) updateRefs.push('--unshallow'); await oexec('git', updateRefs); // make a copy of our repo -// netlify does weird shit that requires special special dispensation +// @NOTE: netlify does weird shit that requires special special dispensation if (process.env?.NETLIFY === 'true') { // get git URL from git config const gitUrl = getStdOut('git config --get remote.origin.url', {trim: true});