scripts: clean up console messages
This commit is contained in:
@@ -12,11 +12,9 @@ IF "%~1"=="" (
|
||||
echo Absolute URL is required!
|
||||
exit /b 1
|
||||
) ELSE (
|
||||
echo Using absolute URL: !UrlToConvert!
|
||||
set AbsoluteUrl="!UrlToConvert!"
|
||||
)
|
||||
) ELSE (
|
||||
echo Using absolute URL: %~1
|
||||
set AbsoluteUrl=%~1
|
||||
)
|
||||
|
||||
|
||||
@@ -12,11 +12,9 @@ IF "%~1"=="" (
|
||||
echo Module tag is required to extract internals!
|
||||
exit /b 1
|
||||
) ELSE (
|
||||
echo Using module tag: !UserModuleTag!
|
||||
set ModuleTag=!UserModuleTag!
|
||||
)
|
||||
) ELSE (
|
||||
echo Using module tag: %~1
|
||||
set ModuleTag=%~1
|
||||
)
|
||||
|
||||
|
||||
@@ -12,11 +12,9 @@ IF "%~1"=="" (
|
||||
echo Module tag is required to extract internals!
|
||||
exit /b 1
|
||||
) ELSE (
|
||||
echo Using module tag: !UserModuleTag!
|
||||
set ModuleTag=!UserModuleTag!
|
||||
)
|
||||
) ELSE (
|
||||
echo Using module tag: %~1
|
||||
set ModuleTag=%~1
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user