From f2bab04be6669e3e0322b8bc888f5d5657822805 Mon Sep 17 00:00:00 2001 From: vincent-gao Date: Sat, 23 Nov 2019 16:36:37 +1100 Subject: [PATCH] SDPA-3505 skip the tide_core_update_8015 in CI (#115) --- tide_core.install | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tide_core.install b/tide_core.install index 3eb618e7f..c70dacf42 100644 --- a/tide_core.install +++ b/tide_core.install @@ -57,6 +57,10 @@ function tide_core_install() { $functions = get_defined_functions(); foreach ($functions['user'] as $function) { if (strpos($function, 'tide_core_update_') === 0) { + // We don't want the tide_core_update_8015 to run during the CI. + if ($function == 'tide_core_update_8015') { + continue; + } call_user_func($function); } }