From 0480929993b2ff104c631331b51d1a22208c8d02 Mon Sep 17 00:00:00 2001 From: Martyn Date: Sun, 20 Sep 2020 14:00:02 +0200 Subject: [PATCH] Fix tools --- build/ci/drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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