From 3cd4cf22526b89de35f0c1e10c5a631a54ea353e Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Wed, 15 May 2024 15:42:10 -0400 Subject: [PATCH] fix: use the correct environment variable in watch_sass 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. --- 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"