From aac70563fd8a1492af25ae1b9aa9d14c42b36a18 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Fri, 17 May 2024 11:19:59 -0400 Subject: [PATCH] fix: use the correct environment variable in watch_sass (#34817) EDX_PLAFORM_THEME_DIRS was the original name, but it was changed to COMPREHENSIVE_THEME_DIRS in https://github.com/openedx/edx-platform/pull/34700. Redwood backport of: https://github.com/openedx/edx-platform/pull/34805 --- scripts/watch_sass.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/watch_sass.sh b/scripts/watch_sass.sh index e88cb9e3cd6f..58bc3259767d 100755 --- a/scripts/watch_sass.sh +++ b/scripts/watch_sass.sh @@ -93,7 +93,7 @@ start_sass_watch "default theme" \ # Watch each theme's Sass. # If it changes, only recompile that theme. export IFS=":" -for theme_dir in ${EDX_PLATFORM_THEME_DIRS:-} ; do +for theme_dir in ${COMPREHENSIVE_THEME_DIRS:-} ; do for theme_path in "$theme_dir"/* ; do theme_name="${theme_path#"$theme_dir/"}" lms_sass="$theme_path/lms/static/sass"