Skip to content

Commit

Permalink
Include scala xml in delitec jars
Browse files Browse the repository at this point in the history
  • Loading branch information
kjbrown committed May 2, 2016
1 parent 885db71 commit 828c0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/delitec-wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def main():

# add all managed libs
# caveat: scalatest pulls in some non-virtualized scala dependencies which conflict with the scala-virtualized versions
jars = [os.path.join(d,f) for (d, n, fs) in os.walk(lib_home + "/lib_managed/") if not (d.count("org.scala-lang") > 0 and d.count("virtualized") == 0) for f in fs]
jars = [os.path.join(d,f) for (d, n, fs) in os.walk(lib_home + "/lib_managed/") if not (d.count("/org.scala-lang/") > 0) for f in fs]
for j in jars:
cp = cp + j + os.pathsep

Expand Down

0 comments on commit 828c0ae

Please sign in to comment.