Skip to content

Commit

Permalink
Penn Courses Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantanen committed Feb 16, 2025
1 parent 7928249 commit f4632b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docker/waypoint/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ REPO_NAME="infrastructure"
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
BINARY_SUFFIX=""
CWD=$(pwd)

case "$OS" in
linux*)
Expand Down Expand Up @@ -55,3 +56,5 @@ echo "Run 'waypoint-client configure' to get started."
echo "Run 'waypoint-client --help' to see available commands."

rm -rf $TMP_DIR

cd $CWD
2 changes: 1 addition & 1 deletion docker/waypoint/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def init_product(product: str) -> None:
shell=True,
check=True,
)
if (product != "penn-mobile"):
if (product != "penn-mobile" or product != "penn-courses"):
subprocess.run(
f"bash -c 'source {venv_path} && cd {backend_path} && python manage.py populate'",
shell=True,
Expand Down

0 comments on commit f4632b8

Please sign in to comment.