Skip to content

Commit 4fe233d

Browse files
authored
Merge branch 'master' into fix/amf-h264-profile-coder
2 parents 3b8a19f + 356c6a2 commit 4fe233d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci-freebsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
echo "PROCESSOR_COUNT: $PROCESSOR_COUNT"
8787
8888
- name: Setup FreeBSD
89-
uses: vmactions/freebsd-vm@4807432c7cab1c3f97688665332c0b932062d31f # v1.4.3
89+
uses: vmactions/freebsd-vm@7ca82f79fe3078fecded6d3a2bff094995447bbd # v1.4.4
9090
with:
9191
arch: ${{ matrix.arch }}
9292
cpu: ${{ steps.processor_count.outputs.PROCESSOR_COUNT }}

src_assets/windows/misc/path/update-path.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ if /i "%~1"=="remove" (
9494
rem Only update if path was changed
9595
if "!CHANGES_MADE!"=="1" (
9696
rem Set the new path in the registry
97-
reg add "%KEY_NAME%" /v "%VALUE_NAME%" /t REG_EXPAND_SZ /d "!CURRENT_PATH!" /f
97+
rem Windows systems running Chinese may unexpectedly ignore the /f option at the end of the command.
98+
rem This issue only occurs with the remove command.
99+
reg add "%KEY_NAME%" /v "%VALUE_NAME%" /t REG_EXPAND_SZ /f /d "!CURRENT_PATH!"
98100
if !ERRORLEVEL!==0 (
99101
echo Successfully removed Sunshine directories from PATH
100102
) else (

0 commit comments

Comments
 (0)