Browse Source

Always update the ORM lib

Rob Figueiredo 12 years ago
parent
commit
ddeef38987
2 changed files with 4 additions and 4 deletions
  1. 2 2
      revel-jet/setup.py
  2. 2 2
      revel-qbs/setup.py

+ 2 - 2
revel-jet/setup.py

@@ -11,11 +11,11 @@ def start(args):
   if os.name == 'nt':
   if os.name == 'nt':
     env = os.environ.copy()
     env = os.environ.copy()
     env["GOPATH"] = "C:\\FrameworkBenchmarks\\" + CWD
     env["GOPATH"] = "C:\\FrameworkBenchmarks\\" + CWD
-    subprocess.call("go get -u github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
+    subprocess.call("go get -u github.com/robfig/revel/revel github.com/eaigner/jet", shell=True, cwd=CWD, env=env)
     subprocess.call(r"go build -o bin\revel.exe github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
     subprocess.call(r"go build -o bin\revel.exe github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
     subprocess.Popen(r"bin\revel.exe run benchmark prod".rsplit(" "), shell=True, cwd=CWD, env=env)
     subprocess.Popen(r"bin\revel.exe run benchmark prod".rsplit(" "), shell=True, cwd=CWD, env=env)
     return 0
     return 0
-  subprocess.call("go get -u github.com/robfig/revel/revel", shell=True, cwd=CWD)
+  subprocess.call("go get -u github.com/robfig/revel/revel github.com/eaigner/jet", shell=True, cwd=CWD)
   subprocess.call("go build -o bin/revel github.com/robfig/revel/revel", shell=True, cwd=CWD)
   subprocess.call("go build -o bin/revel github.com/robfig/revel/revel", shell=True, cwd=CWD)
   subprocess.Popen("bin/revel run benchmark prod".rsplit(" "), cwd=CWD)
   subprocess.Popen("bin/revel run benchmark prod".rsplit(" "), cwd=CWD)
   return 0
   return 0

+ 2 - 2
revel-qbs/setup.py

@@ -11,11 +11,11 @@ def start(args):
   if os.name == 'nt':
   if os.name == 'nt':
     env = os.environ.copy()
     env = os.environ.copy()
     env["GOPATH"] = "C:\\FrameworkBenchmarks\\" + CWD
     env["GOPATH"] = "C:\\FrameworkBenchmarks\\" + CWD
-    subprocess.call("go get -u github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
+    subprocess.call("go get -u github.com/robfig/revel/revel github.com/coocood/qbs", shell=True, cwd=CWD, env=env)
     subprocess.call(r"go build -o bin\revel.exe github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
     subprocess.call(r"go build -o bin\revel.exe github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
     subprocess.Popen(r"bin\revel.exe run benchmark prod".rsplit(" "), shell=True, cwd=CWD, env=env)
     subprocess.Popen(r"bin\revel.exe run benchmark prod".rsplit(" "), shell=True, cwd=CWD, env=env)
     return 0
     return 0
-  subprocess.call("go get -u github.com/robfig/revel/revel", shell=True, cwd=CWD)
+  subprocess.call("go get -u github.com/robfig/revel/revel github.com/coocood/qbs", shell=True, cwd=CWD)
   subprocess.call("go build -o bin/revel github.com/robfig/revel/revel", shell=True, cwd=CWD)
   subprocess.call("go build -o bin/revel github.com/robfig/revel/revel", shell=True, cwd=CWD)
   subprocess.Popen("bin/revel run benchmark prod".rsplit(" "), cwd=CWD)
   subprocess.Popen("bin/revel run benchmark prod".rsplit(" "), cwd=CWD)
   return 0
   return 0