1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a9e4f0ea892c/ Changeset: a9e4f0ea892c User: dannon Date: 2014-05-07 15:45:53 Summary: Force an absolute path for the temp directory in the local runner Affected #: 1 file diff -r ac95389c7eb502345d0321c54b750f134c5e6ba9 -r a9e4f0ea892c8b7da3f1e468195dc1d29914fd38 lib/galaxy/jobs/runners/local.py --- a/lib/galaxy/jobs/runners/local.py +++ b/lib/galaxy/jobs/runners/local.py @@ -39,7 +39,7 @@ #Set TEMP if a valid temp value is not already set if not ( 'TMPDIR' in self._environ or 'TEMP' in self._environ or 'TMP' in self._environ ): - self._environ[ 'TEMP' ] = tempfile.gettempdir() + self._environ[ 'TEMP' ] = os.path.abspath(tempfile.gettempdir()) super( LocalJobRunner, self ).__init__( app, nworkers ) self._init_worker_threads() Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.