Skip to content

Commit

Permalink
no realpath - need to respect symbolic links
Browse files Browse the repository at this point in the history
  • Loading branch information
mfiers committed Jun 25, 2012
1 parent db69ca7 commit a99552b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/moa/backend/ruff/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def ruffusExecutor(input, output, script, jobData):
sysConf.actor.files_processed.append((input, output))

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 a99552b

Please sign in to comment.