summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.py b/build.py
index 1349d1db..cc77c431 100644
--- a/build.py
+++ b/build.py
@@ -80,7 +80,8 @@ def taskBuild():
80 # make the main jar 80 # make the main jar
81 with ssjb.file.TempDir(DirTemp) as dirTemp: 81 with ssjb.file.TempDir(DirTemp) as dirTemp:
82 ssjb.file.copyTree(dirTemp, DirBin, ssjb.file.find(DirBin)) 82 ssjb.file.copyTree(dirTemp, DirBin, ssjb.file.find(DirBin))
83 ssjb.jar.unpackJar(dirTemp, os.path.join(DirLib, "deps.jar")) 83 for path in ssjb.ivy.getJarPaths(Deps, ExtraRepos):
84 ssjb.jar.unpackJar(dirTemp, path)
84 ssjb.file.delete(os.path.join(dirTemp, "LICENSE.txt")) 85 ssjb.file.delete(os.path.join(dirTemp, "LICENSE.txt"))
85 ssjb.file.delete(os.path.join(dirTemp, "META-INF/maven")) 86 ssjb.file.delete(os.path.join(dirTemp, "META-INF/maven"))
86 ssjb.file.copy(dirTemp, "license.APL2.txt") 87 ssjb.file.copy(dirTemp, "license.APL2.txt")