fix install fail issue

The file naming rules for the johnvansickle web page have changed, replacing 32bit and 64bit with i686 and amd64
This commit is contained in:
MRDHR 2018-11-18 20:35:17 +08:00 committed by GitHub
parent 0a2ee3d92d
commit 7b2d875d58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,10 +38,10 @@ fi
archs=`uname -m`
case "$archs" in
i?86)
ARCH=32bit
ARCH=i686
;;
x86_64)
ARCH=64bit
ARCH=amd64
;;
*)
echo "Unsupported Arquitecture ($archs)"
@ -127,7 +127,6 @@ case $1 in
cp -rf ffmpeg $PATH_INSTALL
cp -rf ffmpeg-10bit $PATH_INSTALL
cp -rf ffprobe $PATH_INSTALL
cp -rf ffserver $PATH_INSTALL
cd ..
rm -rf ffmpeg-*
echo "Done!"