Skip to content

Commit

Permalink
added warning for installer.sh if ffmpeg is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Barakudum committed Jan 30, 2024
1 parent 2ebf604 commit d7e8e34
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ rm -rf "jarklin/_deps/"
mkdir -p "jarklin/_deps/"
python3 -m pip install -r "jarklin/requirements.txt" -t "jarklin/_deps/" --disable-pip-version-check

if ! command -v ffmpeg &>/dev/null; then
error "ffmpeg not found. Please install"
fi

echo
success "Jarklin is now installed"
echo

0 comments on commit d7e8e34

Please sign in to comment.