freelawproject / courtlistener

A fully-searchable and accessible archive of court data including growing repositories of opinions, oral arguments, judges, judicial financial records, and federal filings.
https://www.courtlistener.com
Other
550 stars 151 forks source link

chore(workflows): housekeeping in and around build actions #4596

Closed cweider closed 1 month ago

cweider commented 1 month ago

Doing a batch of one of my favorite things: addressing build warnings!

mlissner commented 1 month ago

Looks good. What on earth is ||: ?

cweider commented 1 month ago

Ah, ||: is a bash-ism - : is a built-in command that does nothing but exit 0 (success). It makes the script succeed despite the preceding mv failing when there are no file matches.

mlissner commented 1 month ago

Thank you Chad. I truly appreciate these tweaks and fixes.