#!/usr/bin/env zximport path from'path';
import { fs } from'zx';
/**
* Creates the needed directories so the permissions get set correctly.
*/exportfunctionsetup({ runDir }) {
const neededDirs = ['n8n'];
for (const dir of neededDirs) {
fs.ensureDirSync(path.join(runDir, dir));
}
}