nodejs-symlink-deps: only create symlink if target exists

This commit is contained in:
T.C. Hollingsworth 2013-04-03 14:05:10 -07:00
parent ab6e60ba98
commit 5a2667dfb1
2 changed files with 5 additions and 1 deletions

View File

@ -52,4 +52,7 @@ for path in modules:
os.chdir('node_modules')
for dep in md['dependencies'].iterkeys():
os.symlink(os.path.join(sitelib, dep), dep)
target = os.path.join(sitelib, dep)
if os.path.exists(target):
os.symlink(target, dep)

View File

@ -191,6 +191,7 @@ cp -p common.gypi %{buildroot}%{_datadir}/node
* Wed Apr 03 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 0.10.3-1
- new upstream release 0.10.3
http://blog.nodejs.org/2013/04/03/node-v0-10-3-stable/
- nodejs-symlink-deps: only create symlink if target exists
* Sun Mar 31 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 0.10.2-1
- new upstream release 0.10.2