scripts: clean up console messages

This commit is contained in:
2026-06-24 12:12:30 +02:00
parent fcdad18067
commit 7c0a43a5b4
3 changed files with 0 additions and 6 deletions
-2
View File
@@ -12,11 +12,9 @@ IF "%~1"=="" (
echo Absolute URL is required! echo Absolute URL is required!
exit /b 1 exit /b 1
) ELSE ( ) ELSE (
echo Using absolute URL: !UrlToConvert!
set AbsoluteUrl="!UrlToConvert!" set AbsoluteUrl="!UrlToConvert!"
) )
) ELSE ( ) ELSE (
echo Using absolute URL: %~1
set AbsoluteUrl=%~1 set AbsoluteUrl=%~1
) )
-2
View File
@@ -12,11 +12,9 @@ IF "%~1"=="" (
echo Module tag is required to extract internals! echo Module tag is required to extract internals!
exit /b 1 exit /b 1
) ELSE ( ) ELSE (
echo Using module tag: !UserModuleTag!
set ModuleTag=!UserModuleTag! set ModuleTag=!UserModuleTag!
) )
) ELSE ( ) ELSE (
echo Using module tag: %~1
set ModuleTag=%~1 set ModuleTag=%~1
) )
-2
View File
@@ -12,11 +12,9 @@ IF "%~1"=="" (
echo Module tag is required to extract internals! echo Module tag is required to extract internals!
exit /b 1 exit /b 1
) ELSE ( ) ELSE (
echo Using module tag: !UserModuleTag!
set ModuleTag=!UserModuleTag! set ModuleTag=!UserModuleTag!
) )
) ELSE ( ) ELSE (
echo Using module tag: %~1
set ModuleTag=%~1 set ModuleTag=%~1
) )