mirror of
https://github.com/danieladov/jellyfin-plugin-skin-manager.git
synced 2026-01-18 16:37:31 +01:00
10 lines
362 B
Batchfile
10 lines
362 B
Batchfile
@ECHO OFF
|
|
@echo This will not work if you have installed jellyfin to a custom location
|
|
set /p ask = Enter 'X' to continue or 'C' to cancel:
|
|
if "%ask%" neq "x" goto:eof
|
|
|
|
@echo starting install...
|
|
|
|
dotnet publish --configuration Release --output bin
|
|
|
|
move bin\Jellyfin.Plugin.SkinManager.dll C:\ProgramData\Jellyfin\Server\plugins\SkinManager |