Procházet zdrojové kódy

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

Chris Vest před 12 roky
rodič
revize
08fbfa4912
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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: