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
dtrace-provider was not compiling for me with the version of Node installed by fnm. After some investigation I discovered that it's because fnm installs node to ~/.config/fnm/bin/node, and on my machine ~/.config is a symlink to ~/Dropbox (Personal)/home-dir/.config. When I moved this folder into ~, so it wasn't a symlink, the problem went away.
The text was updated successfully, but these errors were encountered:
@aexmachina This seems to be a bug in node-gyp. The line here needs to quote everything that $(builddir) is used in so that the spaces don't become a problem. I'll file a bug against node-gyp, and see if there's any good way for the install scripts to work around it.
dtrace-provider was not compiling for me with the version of Node installed by fnm. After some investigation I discovered that it's because fnm installs node to
~/.config/fnm/bin/node
, and on my machine~/.config
is a symlink to~/Dropbox (Personal)/home-dir/.config
. When I moved this folder into~
, so it wasn't a symlink, the problem went away.The text was updated successfully, but these errors were encountered: