Skip to content

Commit 19923fb

Browse files
authored
Fix the name of the static FFMpeg package used for testing (#219)
The latest release name changed format. It was `64bit` but now it's `amd64`
1 parent 45a69f2 commit 19923fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ addons:
2323

2424
before_install:
2525
- ./travis-install-ffmpeg.sh
26-
- export FFMPEG=$PWD/ffmpeg-release-64bit-static/ffmpeg
27-
- export FFPROBE=$PWD/ffmpeg-release-64bit-static/ffprobe
26+
- export FFMPEG=$PWD/ffmpeg-release-amd64-static/ffmpeg
27+
- export FFPROBE=$PWD/ffmpeg-release-amd64-static/ffprobe
2828
- export MAVEN_OPTS="$MAVEN_OPTS -Duser.language=$USER_LANGUAGE -Duser.country=$USER_COUNTRY"
2929

3030
before_script:

travis-install-ffmpeg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Small script to fetch a static ffmpeg
33
set -ex
44

5-
URL=https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz
5+
URL=https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
66
FILE=$(basename ${URL})
77
DIST=$HOME/.dist
88
DISTFILE=${DIST}/${FILE}

0 commit comments

Comments
 (0)