mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-06 10:01:53 +00:00
47 lines
1.4 KiB
Batchfile
47 lines
1.4 KiB
Batchfile
@echo off
|
|
|
|
rem Get sunshine root directory
|
|
for %%I in ("%~dp0\..") do set "OLD_DIR=%%~fI"
|
|
|
|
rem Create the config directory if it didn't already exist
|
|
set "NEW_DIR=%OLD_DIR%\config"
|
|
if not exist "%NEW_DIR%\" mkdir "%NEW_DIR%"
|
|
|
|
rem Migrate all files that aren't already present in the config dir
|
|
if exist "%OLD_DIR%\apps.json" (
|
|
if not exist "%NEW_DIR%\apps.json" (
|
|
move "%OLD_DIR%\apps.json" "%NEW_DIR%\apps.json"
|
|
)
|
|
)
|
|
if exist "%OLD_DIR%\sunshine.conf" (
|
|
if not exist "%NEW_DIR%\sunshine.conf" (
|
|
move "%OLD_DIR%\sunshine.conf" "%NEW_DIR%\sunshine.conf"
|
|
)
|
|
)
|
|
if exist "%OLD_DIR%\sunshine_state.json" (
|
|
if not exist "%NEW_DIR%\sunshine_state.json" (
|
|
move "%OLD_DIR%\sunshine_state.json" "%NEW_DIR%\sunshine_state.json"
|
|
)
|
|
)
|
|
|
|
rem Migrate the credentials directory
|
|
if exist "%OLD_DIR%\credentials\" (
|
|
if not exist "%NEW_DIR%\credentials\" (
|
|
move "%OLD_DIR%\credentials" "%NEW_DIR%\"
|
|
)
|
|
)
|
|
|
|
rem Migrate the covers directory
|
|
if exist "%OLD_DIR%\covers\" (
|
|
if not exist "%NEW_DIR%\covers\" (
|
|
move "%OLD_DIR%\covers" "%NEW_DIR%\"
|
|
|
|
rem Fix apps.json image path values that point at the old covers directory
|
|
powershell -c "(Get-Content '%NEW_DIR%\apps.json').replace('.\/covers\/', '.\/config\/covers\/') | Set-Content '%NEW_DIR%\apps.json'"
|
|
)
|
|
)
|
|
|
|
rem Remove log files
|
|
del "%OLD_DIR%\*.txt"
|
|
del "%OLD_DIR%\*.log"
|