functions.validateEnvFile.cmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-scriptbuilder Show documentation
Show all versions of jclouds-scriptbuilder Show documentation
creates scripts that can be used to manage services
The newest version!
:validateEnvFile
set ENV_FILE=%1
shift
if not defined ENV_FILE (
set EXCEPTION=validateEnvFile requires a parameter of the file to source
exit /b 1
)
if not exist "%ENV_FILE%" (
set EXCEPTION=env file '%ENV_FILE%' does not exist
exit /b 1
)
exit /b 0
© 2015 - 2025 Weber Informatics LLC | Privacy Policy