You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ci): convert daily_wbb_R_processor.sh from CRLF to LF line endings
Bash on Linux can't parse CR after `in` keyword:
scripts/daily_wbb_R_processor.sh: line 4: syntax error near
unexpected token `$'in\r''
scripts/daily_wbb_R_processor.sh: line 4: ` case "${flag}" in
Surfaced when the wnba-data parser ran (the wbb-data parser will
hit the same once wbb-raw triggers it). The script was committed
with Windows CRLF line endings during the original Phase 1-3 work;
the daily processor failed before any R script ran.
Stripped CR from every line via `sed -i 's/\r$//'`. No semantic
changes.
0 commit comments