1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Tools: Export rootDir from utils

This commit is contained in:
Laurent Cozic 2023-03-19 17:31:37 +00:00
parent 53302c9e90
commit 3a8d87d292

View File

@ -1,9 +1,13 @@
import execCommand from './execCommand';
import commandToString from './commandToString';
import splitCommandString from './splitCommandString';
import { dirname } from 'path';
const rootDir = dirname(dirname(dirname(__dirname)));
export {
execCommand,
commandToString,
splitCommandString,
rootDir,
};