Skip to content

Commit e2c9b85

Browse files
committed
3.0.0
Update the script.
1 parent 6a516e2 commit e2c9b85

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

install-ffmpeg-4_0_6.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ BIN_PATH="/usr/local/bin"
4646
mkdir -p $SOURCE_PATH $BIN_PATH $BUILD_PATH || fail
4747

4848
# Install dependencies: CMake
49-
wget -O- https://cmake.org/files/v3.20/cmake-3.20.5.tar.gz | tar xz -C .
50-
cd cmake-3.20.5
51-
./bootstrap
52-
make -j$(nproc)
53-
sudo make install
49+
wget -O- https://cmake.org/files/v3.20/cmake-3.20.5.tar.gz | tar xz -C . || fail
50+
cd cmake-3.20.5 || fail
51+
./bootstrap || fail
52+
make -j$(nproc) || fail
53+
sudo make install || fail
5454

5555
# Install dependencies: NASM
5656
cd SOURCE_PATH || fail

0 commit comments

Comments
 (0)