From 0be80d9956bbe0fdee04d4611c58f0522244866b Mon Sep 17 00:00:00 2001 From: Prayag Date: Tue, 11 May 2021 15:36:14 +0530 Subject: [PATCH] Update batch file --- install.bat | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/install.bat b/install.bat index 8bf1492..3584079 100644 --- a/install.bat +++ b/install.bat @@ -1,3 +1,8 @@ -This will not work if you have installed jellyfin to a custom location -dotnet publish --configuration Release --output bin -move bin\Jellyfin.Plugin.SkinManager.dll C:\ProgramData\Jellyfin\Server\plugins\SkinManager +@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" ( + @echo starting install... + dotnet publish --configuration Release --output bin + move bin\Jellyfin.Plugin.SkinManager.dll C:\ProgramData\Jellyfin\Server\plugins\SkinManager +) \ No newline at end of file