Browse Source

Final change to weber's install script hopefully

Alex Schneider 11 years ago
parent
commit
5df9bb3daf
1 changed files with 3 additions and 3 deletions
  1. 3 3
      toolset/setup/linux/installer.py

+ 3 - 3
toolset/setup/linux/installer.py

@@ -285,10 +285,10 @@ class Installer:
     # Weber
     # Weber
     #
     #
     self.__run_command("git clone https://github.com/elixir-web/weber.git");
     self.__run_command("git clone https://github.com/elixir-web/weber.git");
-    # To get the two make commands working, we need to hard code the path for elixir's "mix"
+    # To get the two make commands working, we need to hard code the path for elixir's "mix" and run it in bash
     self.__run_command("sed -i 's:$(MIX):/home/tfb/FrameworkBenchmarks/installs/elixir-0.13.3/bin/mix:' Makefile", cwd="weber")
     self.__run_command("sed -i 's:$(MIX):/home/tfb/FrameworkBenchmarks/installs/elixir-0.13.3/bin/mix:' Makefile", cwd="weber")
-    self.__run_command("make", cwd="weber");
-    self.__run_command("make test", cwd="weber");
+    self.__run_command("bash -l -c 'make'", cwd="weber");
+    self.__run_command("bash -l -c 'make test'", cwd="weber");
 
 
     ##############################################################
     ##############################################################
     # Frameworks
     # Frameworks