functions.sourceEnvFile.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!
:sourceEnvFile
set ENV_FILE=%1
shift
if not defined ENV_FILE (
set EXCEPTION=sourceEnvFile requires a parameter of the file to source
exit /b 1
)
call %ENV_FILE%
if errorlevel 1 (
set EXCEPTION=Please append 'exit /b 0' to the end of '%ENV_FILE%'
exit /b 1
)
exit /b 0
© 2015 - 2025 Weber Informatics LLC | Privacy Policy