49e30f7172
When `amend` is empty, expand it to nothing instead of an empty string (which causes a git error).
16 lines
350 B
Bash
16 lines
350 B
Bash
# Create and maintain a minimal git repo at the root of the copied src
|
|
(
|
|
# shellcheck disable=SC2154,SC2164
|
|
cd "$scriptDir/.."
|
|
amend=(--amend)
|
|
|
|
if [[ ! -e .git ]] || ! git rev-parse HEAD 2>/dev/null; then
|
|
git init
|
|
amend=()
|
|
fi
|
|
git add .
|
|
if ! git diff --quiet --cached; then
|
|
git commit -a "${amend[@]}" -m -
|
|
fi
|
|
) >/dev/null
|