Skip to content

Commit

Permalink
Merge branch 'release/1.4.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-gao committed Nov 23, 2019
2 parents 05fa736 + f2bab04 commit 1a24d31
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tide_core.install
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 1a24d31

Please sign in to comment.