From 8e1a4a30c3abebdd36570cf8f8de94c11ab8e997 Mon Sep 17 00:00:00 2001 From: vdelacruzb Date: Wed, 11 Dec 2024 15:33:46 +0100 Subject: [PATCH] skip_dep in bigquery build_modules --- clouds/bigquery/common/build_modules.js | 1 + 1 file changed, 1 insertion(+) diff --git a/clouds/bigquery/common/build_modules.js b/clouds/bigquery/common/build_modules.js index e691541c1..e98af1770 100755 --- a/clouds/bigquery/common/build_modules.js +++ b/clouds/bigquery/common/build_modules.js @@ -163,6 +163,7 @@ function apply_replacements (text) { text = text.replace(pattern, process.env[replacement]); } } + text = text.replace(/@@SKIP_DEP@@/g, ''); return text; }