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
This is the current code in install.js if (!exists(git) || !fs.lstatSync(git).isDirectory()) return;
Which skips the install if .git is actually a link file.
In our case, we have .git that is a soft link file that points to another location. So the install doesn't work.
The text was updated successfully, but these errors were encountered:
wonderyl
changed the title
install.js doesn't work with link file.
install.js doesn't work with link file of .git.
Jul 8, 2019
This is the current code in install.js
if (!exists(git) || !fs.lstatSync(git).isDirectory()) return;
Which skips the install if .git is actually a link file.
In our case, we have .git that is a soft link file that points to another location. So the install doesn't work.
The text was updated successfully, but these errors were encountered: