From 7b8411810239683911ad7ef749ed7943038949b4 Mon Sep 17 00:00:00 2001 From: Peter Foley Date: Tue, 5 Mar 2013 19:49:26 -0500 Subject: fix access is denied error in nss on windows Change-Id: I3b0ebab5e87897a9c29da4b3f97f7fb71cdd1751 --- nss/nsinstall.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nss/nsinstall.py b/nss/nsinstall.py index e1728a932449..67d696b59706 100644 --- a/nss/nsinstall.py +++ b/nss/nsinstall.py @@ -147,6 +147,7 @@ def nsinstall(argv): shutil.copy2(srcpath, targetpath) else: if os.path.exists(targetpath): + os.chmod(targetpath, 755) os.remove(targetpath) shutil.copy(srcpath, targetpath) -- cgit v1.2.3