1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

Fix getsig referencing

This commit is contained in:
Ciaran Gultnieks 2012-03-12 20:17:37 +00:00
parent d2fa268910
commit 444c56d18f

View File

@ -159,7 +159,7 @@ def main():
# Get the signature (or md5 of, to be precise)...
p = subprocess.Popen(['java', 'getsig',
os.path.join(os.getcwd(), apkfile)],
cwd=os.path.join(sys.path[0], 'getsig'),
cwd=os.path.join(os.path.dirname(__file__), 'getsig'),
stdout=subprocess.PIPE)
output = p.communicate()[0]
if options.verbose: