Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit 99e8f9a

Browse files
committed
Redirect msgs to stderr
1 parent b7a81f2 commit 99e8f9a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/grumprun

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,7 @@ def main(args):
9898
f.write(module_tmpl.substitute(package=package, imports=imports))
9999
return subprocess.Popen('go run ' + go_main, shell=True).wait()
100100
finally:
101-
# print 'shutil.rmtree(%s)' % workdir
102-
pass
101+
print >> os.stderr, 'shutil.rmtree(%s)' % workdir
103102

104103

105104
def _package_name(modname):

0 commit comments

Comments
 (0)