Fixing bad docker compose path

This commit is contained in:
Marco Lipparini
2023-07-16 05:38:10 +02:00
parent 48bb30dd84
commit cd101d6ba0
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import mysql from 'mysql';
import packageInfo from '../package.json';
let PACKAGE_INSTALLATION_PATH = path.normalize(
__dirname.startsWith('/snapshot') ? path.dirname(process.execPath) : `${__dirname}/../..`,
__dirname.startsWith('/snapshot') ? `${path.dirname(process.execPath)}/..` : `${__dirname}/../..`,
);
const dockerCompose: typeof dockerCommand = async (command, options) => {