Skip to content

Commit

Permalink
Fix VLC 4.0 Windows build
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
nurupo committed Jan 26, 2025
1 parent 86daaa5 commit d22794e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/windows/docker/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build()

if [[ "$VERSION" == "4.0" ]]
then
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)
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)
echo "$LATEST_DIR_URL"
LATEST_FILE_URL=$(lynx -listonly -nonumbers -dump "$LATEST_DIR_URL" | grep ".7z$" | grep -v "debug" | tail -n1)
echo "$LATEST_FILE_URL"
Expand Down

0 comments on commit d22794e

Please sign in to comment.