7 lines
87 B
Bash
7 lines
87 B
Bash
parseArgs_mine() {
|
|
echo "Fetching user: $1"
|
|
if [ -n "$1" ]; then
|
|
GIT_USER=$1
|
|
fi
|
|
}
|