fix: use the correct environment variable in watch_sass (#34805)

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.
This commit is contained in:
Kyle McCormick
2024-05-16 15:08:05 -04:00
committed by GitHub
parent 0fd3bde79d
commit 51274af916

View File

@@ -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"