Revision: 13742
http://sourceforge.net/p/skim-app/code/13742
Author: hofman
Date: 2023-11-11 19:01:32 +0000 (Sat, 11 Nov 2023)
Log Message:
-----------
ignore stdout from security command
Modified Paths:
--------------
trunk/build_skim.py
Modified: trunk/build_skim.py
===================================================================
--- trunk/build_skim.py 2023-11-11 18:42:09 UTC (rev 13741)
+++ trunk/build_skim.py 2023-11-11 19:01:32 UTC (rev 13742)
@@ -362,7 +362,7 @@
def keyFromSecureNote():
# see
http://www.entropy.ch/blog/Developer/2008/09/22/Sparkle-Appcast-Automation-in-Xcode.html
- pwtask = Popen(["/usr/bin/security", "find-generic-password", "-g", "-s",
KEY_NAME], stdout=PIPE, stderr=PIPE)
+ pwtask = Popen(["/usr/bin/security", "find-generic-password", "-g", "-s",
KEY_NAME], stdout=DEVNULL, stderr=PIPE)
# security returns the password in stderr for some reason
pwoutput = pwtask.communicate()[1].decode("utf-8")
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit