Skip to content

Commit fd82590

Browse files
committed
lint
1 parent cd9bdd1 commit fd82590

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,10 @@ commands:
118118
pnpx [email protected] install --with-deps
119119
# Avoids installing a system version of ffmpeg
120120
ffmpeg_bin=$(find ~/.cache/ms-playwright -regex '.*/ffmpeg-[0-9]*')
121-
echo "Using $ffmpeg_bin"
121+
if [[ -z "$ffmpeg_bin" ]]; then
122+
>&2 echo "Could not find ffmpeg location"
123+
exit 1
124+
fi
122125
ln -s "$ffmpeg_bin" ~/bin/ffmpeg
123126
124127
jobs:

0 commit comments

Comments
 (0)