Parcourir la source

Fix the build so it no longer double-shades. This removes all the warnings it printed.

Chris Vest il y a 12 ans
Parent
commit
08fbfa4912
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      grizzly-jersey/setup.py

+ 1 - 1
grizzly-jersey/setup.py

@@ -5,7 +5,7 @@ import os
 
 def start(args):
   try:
-    subprocess.check_call("mvn clean package shade:shade", shell=True, cwd="grizzly-jersey")
+    subprocess.check_call("mvn clean package", shell=True, cwd="grizzly-jersey")
     subprocess.Popen("java -jar target/grizzly-jersey-example-0.1.jar".rsplit(" "), cwd="grizzly-jersey")
     return 0
   except subprocess.CalledProcessError: