Revision: 28434
http://sourceforge.net/p/bibdesk/svn/28434
Author: hofman
Date: 2023-11-11 19:01:55 +0000 (Sat, 11 Nov 2023)
Log Message:
-----------
ignore stdout from security command
Modified Paths:
--------------
trunk/bibdesk/build_release.py
Modified: trunk/bibdesk/build_release.py
===================================================================
--- trunk/bibdesk/build_release.py 2023-11-11 18:42:20 UTC (rev 28433)
+++ trunk/bibdesk/build_release.py 2023-11-11 19:01:55 UTC (rev 28434)
@@ -370,7 +370,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.
_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit