Skip to content

Commit d22794e

Browse files
committed
Fix VLC 4.0 Windows build
Switch to using LLVM Windows builds for VLC 4.0, as https://artifacts.videolan.org/vlc/nightly-win32/ have no nightly builds, 32-bit Windows nightlies are probably made using just llvm now at https://artifacts.videolan.org/vlc/nightly-win32/
1 parent 86daaa5 commit d22794e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packaging/windows/docker/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build()
88

99
if [[ "$VERSION" == "4.0" ]]
1010
then
11-
LATEST_DIR_URL=$(lynx -listonly -nonumbers -dump "https://artifacts.videolan.org/vlc/nightly-win${BITS}/" | grep -P '\d{8}-\d+' | LC_COLLATE=C sort --stable --ignore-case | tail -n1)
11+
LATEST_DIR_URL=$(lynx -listonly -nonumbers -dump "https://artifacts.videolan.org/vlc/nightly-win${BITS}-llvm/" | grep -P '\d{8}-\d+' | LC_COLLATE=C sort --stable --ignore-case | tail -n1)
1212
echo "$LATEST_DIR_URL"
1313
LATEST_FILE_URL=$(lynx -listonly -nonumbers -dump "$LATEST_DIR_URL" | grep ".7z$" | grep -v "debug" | tail -n1)
1414
echo "$LATEST_FILE_URL"

0 commit comments

Comments
 (0)