All Downloads are FREE. Search and download functionalities are using the official Maven repository.

functions.sourceEnvFile.sh Maven / Gradle / Ivy

function sourceEnvFile {
   [ $# -eq 1 ] || {
      abort "sourceEnvFile requires a parameter of the file to source"
      return 1
   }
   local ENV_FILE="$1"; shift
   . "$ENV_FILE" || {
      abort "Please append 'return 0' to the end of '$ENV_FILE'"
      return 1
   }
   return 0
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy