/ scripts / get-deb-component-from-git
get-deb-component-from-git
 1  #!/bin/bash
 2  
 3  if [ ! -z "$EMC2_HOME" ]; then
 4      source $EMC2_HOME/scripts/githelper.sh
 5  else
 6      source $(git rev-parse --show-toplevel)/scripts/githelper.sh
 7  fi
 8  
 9  githelper $1
10  
11  echo $DEB_COMPONENT
12