Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Absolute Path for Options #169

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Absolute Path for Options #169

wants to merge 2 commits into from

Conversation

mou01
Copy link

@mou01 mou01 commented May 3, 2018

Fixes #164

@marvinhuebner
Copy link

marvinhuebner commented Nov 6, 2018

I've a similar situation there i have to check if the path is absolute. My solution has looked like this:

for (var i in dir) {
  var cwd = '';

  if (!path.isAbsolute(dir[i])) {
    cwd = process.cwd();
  }

  files = files.concat(glob.sync(path.join(cwd, dir[i], pattern)));
}

But i think your code does it fix it in a smarter way.

@gakimball is there a way to get this into?

@DanielRuf
Copy link
Contributor

In another repo we had the same. Someone recommended path.resolve there.

See foundation/style-sherpa#5 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants