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 d2fb777
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builders/varnish.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ 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}`);
});

Check failure on line 39 in builders/varnish.js

View workflow job for this annotation

GitHub Actions / lint (ubuntu-22.04, 18)

Trailing spaces not allowed
// Loop that array and add each plugin to the registry and move scripts if the folder exists.
varnishServicesPath.forEach(servicePath => {
// Add the plugin to the registry
Expand Down

0 comments on commit d2fb777

Please sign in to comment.