Skip to content

Commit 55095c7

Browse files
committed
修复 ps1 脚本 UTF-8 BOM 导致 meson find_program 判定失败,BestSource 同步升级 R21
1 parent 1f46785 commit 55095c7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

subprojects/bestsource.wrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[wrap-git]
22
url = https://github.com/vapoursynth/bestsource
3-
revision = R20
3+
revision = R21
44
clone-recursive = true
55

66
[provide]

tools/setup-automation.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env powershell
1+
#!/usr/bin/env powershell
22
<#
33
.SYNOPSIS
44
安装 automation 脚本到指定目录,供开发环境运行时使用。

tools/win-installer-setup.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env powershell
1+
#!/usr/bin/env powershell
22

33
param (
44
[Parameter(Position = 0)]
@@ -148,7 +148,7 @@ if (!(Test-Path BestSource))
148148
# $basReleases = Invoke-WebRequest "https://api.github.com/repos/vapoursynth/bestsource/releases/latest" -Headers $GitHeaders -UseBasicParsing | ConvertFrom-Json
149149
# $bsUrl = $basReleases.assets[0].browser_download_url
150150
# R20 起资产为带版本后缀的单文件 zip(R19 为 7z 且 DLL 名为 BestSource.dll)
151-
$bsUrl = "https://github.com/vapoursynth/bestsource/releases/download/R20/BestSource-R20-win64-msvc.zip"
151+
$bsUrl = "https://github.com/vapoursynth/bestsource/releases/download/R21/BestSource-R21-win64-msvc.zip"
152152
Invoke-WebRequest $bsUrl -OutFile bestsource.zip -UseBasicParsing
153153
7z x bestsource.zip -y
154154
Remove-Item bestsource.zip

0 commit comments

Comments
 (0)