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
The shebang line in the shims created by mkshims is #!/usr/bin/env node. This is broken in at least two ways:
If some version of node is globally installed (i.e. on PATH), the shim will execute using that node, even if it's not the same node that's in the same directory as the shim.
If no version of node is globally installed, the shim just fails entirely.
The text was updated successfully, but these errors were encountered:
The shebang line in the shims created by mkshims is
#!/usr/bin/env node
. This is broken in at least two ways:The text was updated successfully, but these errors were encountered: