Skip to content

Commit f2811af

Browse files
committed
windows build was passing in 'quoted' version strings, and git was balking at that.
1 parent 96da57b commit f2811af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/build.windows_x86_64.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Push-Location $SCRIPT_DIR
77
# リポジトリの下に置きたいが、GitHub Actions の D:\ の容量が少なくてビルド出来ない問題があるので
88
# このパスにソースを配置する。
99
# また、WebRTC のビルドしたファイルは同じドライブに無いといけないっぽいのでこちらも設定する。
10-
python3 run.py build windows_x86_64 --debug --source-dir 'C:\webrtc' --build-dir 'C:\webrtc-build' --commit `"$COMMIT_HASH`"
10+
python3 run.py build windows_x86_64 --debug --source-dir 'C:\webrtc' --build-dir 'C:\webrtc-build' --commit $COMMIT_HASH
1111
python3 run.py package windows_x86_64 --debug --source-dir 'C:\webrtc' --build-dir 'C:\webrtc-build'
1212
Pop-Location

build/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def get_webrtc(source_dir, patch_dir, version, target,
318318
cmd(['git', 'checkout', '-f', 'origin/HEAD'])
319319
else:
320320
cmd(['git', 'branch'])
321-
cmd(['git', 'checkout', '-f', 'm114_release'])
321+
cmd(['git', 'checkout', '-f', version])
322322
cmd(['git', 'clean', '-df'])
323323
cmd(['gclient', 'sync', '-D', '--force', '--reset', '--with_branch_heads'])
324324
for patch in PATCHES[target]:

0 commit comments

Comments
 (0)