From 21f1f7abd279e53ad6dc9a6f2065ec3a0bda2f1a Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 27 Mar 2012 17:02:27 -0700 Subject: [PATCH] Fix heat jeos_create F16 x86_64 litters files Fixes Issue #41. Output the file to /dev/null instead Signed-off-by: Steven Dake --- bin/heat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/heat b/bin/heat index 894085d0..20e36280 100755 --- a/bin/heat +++ b/bin/heat @@ -267,7 +267,7 @@ def jeos_create(options, arguments): if options.debug: extra_opts = ' -d 3 ' - res = os.system("oz-install %s -t 50000 -u %s" % (extra_opts, tdl_path)) + res = os.system("oz-install %s -t 50000 -u %s -x /dev/null" % (extra_opts, tdl_path)) if res == 256: sys.exit(1) if not os.access(dsk_filename, os.R_OK): -- 2.45.2