Skip to content

Commit

Permalink
fix: use the correct environment variable in watch_sass
Browse files Browse the repository at this point in the history
EDX_PLAFORM_THEME_DIRS was the original name,
but it was changed to COMPREHENSIVE_THEME_DIRS
in #34700.
  • Loading branch information
kdmccormick authored May 15, 2024
1 parent 7d7a18d commit 3cd4cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/watch_sass.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3cd4cf2

Please sign in to comment.