From: Ralf Jung Date: Fri, 3 Aug 2012 12:13:21 +0000 (+0200) Subject: Fix for running in minimal chroot X-Git-Url: https://git.ralfj.de/auto-debuild.git/commitdiff_plain/2d5040e26f7bf6b480e45f368794375495e2582c Fix for running in minimal chroot --- diff --git a/auto_debuild.py b/auto_debuild.py index 86f5805..bb4387e 100755 --- a/auto_debuild.py +++ b/auto_debuild.py @@ -91,8 +91,8 @@ def writeDependency(f, name, list): def createDebianFiles(config): sourceName = config['sourceName'] binaryName = config.get('binaryName', sourceName+'-local') - name = config.get('name', os.getlogin()) - email = config.get('email', os.getlogin()+'@'+os.uname()[1]) # user@hostname + name = config.get('name', os.getenv('USER')) # os.getlogin() fails in minimal chroots + email = config.get('email', os.getenv('USER')+'@'+os.uname()[1]) # user@hostname debDir = os.path.expanduser(config['debDir']) buildSystem = config['buildSystem'] version = config['version']