aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/vendor/williamdes/mariadb-mysql-kbs/src/index.js
blob: e0308f182abb55d086c9a575c8f817b2464a1260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';
const MariaDB = require('./MariaDB.js');
const MySQL = require('./MySQL.js');

console.log('Run build...');

Promise.all([MariaDB.run(), MySQL.run()])
    .then(() => {
        console.log('All done.');
    })
    .then(() => {
        console.log('End !');
    });