We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1fb099 commit 593e340Copy full SHA for 593e340
install_ffmpeg.sh
@@ -5,7 +5,8 @@
5
function install_ffmpeg() {
6
echo "➡️ Installing FFmpeg..."
7
# Check if FFmpeg is already installed
8
- if ! cd ffmpegMaker 2>/dev/null; then
+ ls -l ffmpegMaker 2>/dev/null
9
+ if [[ ! -d "ffmpegMaker" || -z "$(ls -A ffmpegMaker)" ]]; then
10
git config --global core.autocrlf input
11
git clone https://gh-proxy.com/github.com/linjonh/ffmpegMaker.git
12
cd ffmpegMaker || exit
0 commit comments