Skip to content

Commit

Permalink
Correct directory path for node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Nov 15, 2023
1 parent 75d5f85 commit 17477de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builders/varnish.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const addDependencies = options => {

// Make an array of absolute paths to the plugins we need to add
const varnishServicesPath = varnishServices.map(service => {
return path.join(__dirname, `../../node_modules/@lando/${service}`);
return path.join(__dirname, `../node_modules/@lando/${service}`);
});

// Loop that array and add each plugin to the registry and move scripts if the folder exists.
Expand Down

0 comments on commit 17477de

Please sign in to comment.