Skip to content

Commit

Permalink
respect symbolic links
Browse files Browse the repository at this point in the history
  • Loading branch information
mfiers committed Jun 11, 2012
1 parent c3d9011 commit c109d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/moa/backend/ruff/reduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@

def localMapExecutor(input, output, script, jobData):
wd = jobData['wd']
tmpdir = os.path.realpath(os.path.abspath(
os.path.join(wd, '.moa', 'tmp')))
tmpdir = os.path.abspath(
os.path.join(wd, '.moa', 'tmp'))
if not os.path.exists(tmpdir):
os.makedirs(tmpdir)

Expand Down

0 comments on commit c109d11

Please sign in to comment.