Git can tell you what the root dir of the repo is, so the scripts don't need to force the user to cd there first. Signed-off-by: Sebastian Kuzminsky <seb@highlab.com>
12 lines
196 B
Bash
Executable file
12 lines
196 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -z "$EMC2_HOME" ]; then
|
|
source $EMC2_HOME/scripts/githelper.sh
|
|
else
|
|
source $(git rev-parse --show-toplevel)/scripts/githelper.sh
|
|
fi
|
|
|
|
githelper $1
|
|
|
|
echo $DEB_COMPONENT
|
|
|