Skip to content
Snippets Groups Projects
Commit 6595cfb3 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(composer): ensure vendor dir exists

parent b7f10027
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,7 @@ async function getArtifacts( ...@@ -27,6 +27,7 @@ async function getArtifacts(
return null; return null;
} }
const cwd = upath.join(config.localDir, upath.dirname(packageFileName)); const cwd = upath.join(config.localDir, upath.dirname(packageFileName));
await fs.ensureDir(upath.join(cwd, 'vendor'));
let stdout; let stdout;
let stderr; let stderr;
try { try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment