Skip to content

Commit

Permalink
minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed May 24, 2012
1 parent 59897db commit be6a3ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/moar
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ cl = sys.argv[1:]
for path, dirs, files in os.walk(base):
toRemove = [x for x in dirs if x[0] in ['.', '_']]
[dirs.remove(x) for x in toRemove]
P = sp.Popen(cl, cwd=path)
print 'executing in %s' % path
P = sp.Popen(cl, cwd=path, shell=True)
P.wait()

0 comments on commit be6a3ed

Please sign in to comment.