Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mx.jruby/mx_jruby.py
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
import tarfile
import zipfile
from threading import Thread
from os.path import join, exists
from os.path import join, exists, isdir

import mx
import mx_benchmark
@@ -109,7 +109,8 @@ def clean(self, forBuild=False):
pass

def mavenSetup():
mavenDir = join(_suite.dir, 'mxbuild', 'mvn')
buildPack = join(_suite.dir, 'jruby-build-pack')
mavenDir = buildPack if isdir(buildPack) else join(_suite.dir, 'mxbuild/mvn')
maven_repo_arg = '-Dmaven.repo.local=' + mavenDir
env = os.environ.copy()
env['JRUBY_BUILD_MORE_QUIET'] = 'true'

0 comments on commit 57da93a

Please sign in to comment.