From 3112a41732129b94d3337603c4c00517358680f3 Mon Sep 17 00:00:00 2001 From: rogurotus Date: Wed, 15 Nov 2023 01:01:31 +0300 Subject: [PATCH] Backport upstream changes up to 0848d56d (#63) Co-authored-by: Kai Ren --- VERSION | 2 +- build.windows.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index d9a6f5a2..ade44b0e 100644 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ -CCACHE_VERSION=4.6 +CCACHE_VERSION=4.8.3 # WebRTC doesn't have its own versioning, so we use Chromium versions: # https://chromiumdash.appspot.com/releases diff --git a/build.windows.ps1 b/build.windows.ps1 index 2bf69adf..b964e4f7 100644 --- a/build.windows.ps1 +++ b/build.windows.ps1 @@ -24,7 +24,7 @@ function Exec # VERSIONファイル読み込み $lines = get-content VERSION -foreach($line in $lines){ +foreach ($line in $lines) { # WEBRTC_COMMITの行のみ取得する if ($line -match "^WEBRTC_") { $name, $value = $line.split("=",2)