diff options
author | Aleric Inglewood | 2010-09-30 15:39:41 +0200 |
---|---|---|
committer | McCabe Maxsted | 2010-10-02 00:56:13 -0700 |
commit | a7d11a07c24bd1e9b625476c477e297a84d556de (patch) | |
tree | 54d32146125a015dcfe799b04a14d9100011dda8 /linden/scripts | |
parent | RED-577: SNOW-477: Wrong string raw_file in strings.xml for RAW file (diff) | |
download | meta-impy-a7d11a07c24bd1e9b625476c477e297a84d556de.zip meta-impy-a7d11a07c24bd1e9b625476c477e297a84d556de.tar.gz meta-impy-a7d11a07c24bd1e9b625476c477e297a84d556de.tar.bz2 meta-impy-a7d11a07c24bd1e9b625476c477e297a84d556de.tar.xz |
RED-578: SNOW-744: scripts/install.py --uninstall does not remove symbolic links.
See http://redmine.imprudenceviewer.org/issues/578
Diffstat (limited to 'linden/scripts')
-rwxr-xr-x | linden/scripts/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/scripts/install.py b/linden/scripts/install.py index 1db9bb3..fca6dbe 100755 --- a/linden/scripts/install.py +++ b/linden/scripts/install.py | |||
@@ -492,7 +492,7 @@ windows/i686/vs/2003 -- specify a windows visual studio 2003 package""" | |||
492 | for filename in remove_file_list: | 492 | for filename in remove_file_list: |
493 | print "rm",filename | 493 | print "rm",filename |
494 | if not self._dryrun: | 494 | if not self._dryrun: |
495 | if os.path.exists(filename): | 495 | if os.path.lexists(filename): |
496 | remove_dir_set.add(os.path.dirname(filename)) | 496 | remove_dir_set.add(os.path.dirname(filename)) |
497 | try: | 497 | try: |
498 | os.remove(filename) | 498 | os.remove(filename) |