diff --git a/build/ci/drone.yml b/build/ci/drone.yml index 2e42bff..4a9b72e 100644 --- a/build/ci/drone.yml +++ b/build/ci/drone.yml @@ -18,7 +18,7 @@ steps: - name: get_win_ffmpeg image: busybox commands: - - mkdir tmp + - mkdir -p tmp - cd tmp - wget http://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-4.3.1-essentials_build.zip - unzip ffmpeg-4.3.1-essentials_build.zip @@ -26,7 +26,7 @@ steps: - name: get_win_ytdl image: busybox commands: - - mkdir tmp + - mkdir -p tmp - cd tmp - wget https://github.com/ytdl-org/youtube-dl/releases/download/2020.09.14/youtube-dl.exe @@ -34,7 +34,7 @@ steps: image: barichello/godot-ci:3.2.3 commands: - cp dlserver/dlserver.exe godot/ - - cp tmp/ffmpeg.exe godot/ + - cp tmp/ffmpeg-4.3.1-essentials_build/bin/ffmpeg.exe godot/ - cp tmp/youtube-dl.exe godot/ - cd godot/ - mkdir -v -p build/windows