Try absolute path, to not confuse jenkins.

This commit is contained in:
LexManos 2013-07-01 12:30:19 -07:00
parent df03ece63f
commit b8b708aab6
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ def main():
def setup_fml(mcp_dir, fml_dir, build_num=0):
print 'Setting up Forge ModLoader'
os.environ['WORKSPACE'] = os.path.join(mcp_dir, '..')
os.environ['WORKSPACE'] = os.path.abspath(os.path.join(mcp_dir, '..'))
os.environ['BUILD_NUMBER'] = str(build_num)
BUILD = ['ant', 'jenkinsbuild']