We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b1b368 commit b35139dCopy full SHA for b35139d
1 file changed
scripts/dist.py
@@ -14,9 +14,11 @@
14
15
16
MAKE_ZIP = False
17
+UPDATE = False
18
19
if len(sys.argv) > 1:
- MAKE_ZIP = sys.argv[1] == "true" or sys.argv[1] == "True"
20
+ MAKE_ZIP = "zip" in sys.argv
21
+ UPDATE = "update" in sys.argv
22
23
24
### Environment variables ###
@@ -258,6 +260,11 @@ def makeZip():
258
260
#####################################################################################
259
261
### Build the different modules ###
262
263
+if UPDATE:
264
+ print("Updating EvoMaster JavaAgent")
265
+ copyEvoMasterAgent()
266
+ exit(0)
267
+
268
checkJavaVersions()
269
270
prepareDistFolder()
0 commit comments