]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Fix typo
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Tue, 17 Sep 2024 14:32:57 +0000 (16:32 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Tue, 17 Sep 2024 18:50:37 +0000 (20:50 +0200)
mkosi/__init__.py

index caa76845fce5acf1756b74ca6c81472ac55bf56f..ac21e4355726a26652574c3bb87947fdf797ae5c 100644 (file)
@@ -2024,7 +2024,7 @@ def calculate_signature(context: Context) -> None:
 
     env = dict(GNUPGHOME=os.fspath(home))
     if sys.stderr.isatty():
-        env |= dict(GPGTTY=os.ttyname(sys.stderr.fileno()))
+        env |= dict(GPG_TTY=os.ttyname(sys.stderr.fileno()))
 
     options: list[PathString] = ["--bind", home, home]