Commit 5883ee8a by Slater-Victoroff

Added directory structure tests

parent 9cdcc9df
...@@ -286,9 +286,11 @@ esac ...@@ -286,9 +286,11 @@ esac
clone_repos clone_repos
# Install system-level dependencies # Sanity check to make sure the repo layout hasn't changed
if [[ -d $BASE/edx_platform/scripts/install-system-req.sh]]; then if [[ -d $BASE/edx_platform/scripts]]; then
ouput "Installing system-level dependencies"
# Install system-level dependencies
bash $BASE/edx_platform/scripts/install-system-req.sh bash $BASE/edx_platform/scripts/install-system-req.sh
output "Installing RVM, Ruby, and required gems" output "Installing RVM, Ruby, and required gems"
......
...@@ -16,10 +16,11 @@ output() { ...@@ -16,10 +16,11 @@ output() {
### START ### START
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" SELF_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
BREW_FILE=$DIR/"brew-formulas.txt" REQUIREMENTS_DIR=$DIR/"requirements/system"
APT_REPOS_FILE=$DIR/"apt-repos.txt" BREW_FILE=$REQUIREMENTS_DIR/"mac_os_x/brew-formulas.txt"
APT_PKGS_FILE=$DIR/"apt-packages.txt" APT_REPOS_FILE=$REQUIREMENTS_DIR/"ubuntu/apt-repos.txt"
APT_PKGS_FILE=$REQUIREMENTS_DIR/"ubuntu/apt-packages.txt"
case `uname -s` in case `uname -s` in
[Ll]inux) [Ll]inux)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment