=== modified file 'snapcraft/common.py'
--- snapcraft/common.py 2015-09-17 18:02:05 +0000
+++ snapcraft/common.py 2015-09-17 22:09:34 +0000
@@ -41,8 +41,12 @@
def run(cmd, **kwargs):
assert isinstance(cmd, list), "run command must be a list"
# FIXME: This is gross to keep writing this, even when env is the same
+ env = assemble_env()
+ print()
+ print(env)
+ print()
with tempfile.NamedTemporaryFile(mode='w+') as f:
- f.write(assemble_env())
+ f.write(env)
f.write('\n')
f.write('exec $*')
f.flush()