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

Commit

Permalink
Is it?
Browse files Browse the repository at this point in the history
  • Loading branch information
alanjds committed Dec 14, 2017
1 parent 84f3a0d commit 201254b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/grumprun
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Usage: $ grumprun -m <module> # Run the named module.
import argparse
import os
import random
import shutil
import string
import subprocess
import sys
Expand Down Expand Up @@ -98,7 +99,7 @@ def main(args):
f.write(module_tmpl.substitute(package=package, imports=imports))
return subprocess.Popen('go run ' + go_main, shell=True).wait()
finally:
print >> os.sys.stderr, 'shutil.rmtree(%s)' % workdir
'shutil.rmtree(%s)' % workdir


def _package_name(modname):
Expand Down

0 comments on commit 201254b

Please sign in to comment.