You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting ENAMETOOLONG on trying to create this file via fsExtra.mkdirs:
ENAMETOOLONG
/Users/flaberge/dev/topperharley/work/507017973001/587bcadc-b170-41f3-bc3e-656be3fe5031/default
But using mkdir -p /Users/flaberge/dev/topperharley/work/507017973001/587bcadc-b170-41f3-bc3e-656be3fe5031/default via command line does work.
On the latest MacbookPro, on Yosemite. This looks to be coming from here or near in libuv, but I figured you might be familiar with the issue and more responsive.
The text was updated successfully, but these errors were encountered:
I think for cross platform consistency it may be capped to 260. Windows restriction maybe? I didn't spend enough time going through libuv to get an exact answer.
Turns out I had a mismatch in some parameter order and was appending a function to my path which effectively added the function's body of code, blowing through the 260 characters. Doh.
I'm getting ENAMETOOLONG on trying to create this file via fsExtra.mkdirs:
ENAMETOOLONG
/Users/flaberge/dev/topperharley/work/507017973001/587bcadc-b170-41f3-bc3e-656be3fe5031/default
But using
mkdir -p /Users/flaberge/dev/topperharley/work/507017973001/587bcadc-b170-41f3-bc3e-656be3fe5031/default
via command line does work.On the latest MacbookPro, on Yosemite. This looks to be coming from here or near in libuv, but I figured you might be familiar with the issue and more responsive.
The text was updated successfully, but these errors were encountered: