File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ function alias_completion {
70
70
local compl_func=" ${new_completion/#* -F / } "
71
71
compl_func=" ${compl_func%% * } "
72
72
# avoid recursive call loops by ignoring our own functions
73
- if [[ " ${compl_func# _$namespace :: } " == " $compl_func " ]]; then
73
+ if [[ " ${compl_func# _" $namespace " :: } " == " $compl_func " ]]; then
74
74
local compl_wrapper=" _${namespace} ::${alias_name} "
75
75
echo " function $compl_wrapper {
76
76
local compl_word=\$ 2
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ function git-changelog() {
309
309
# shellcheck disable=SC2162
310
310
git log " $1 " --no-merges --format=" %cd" --date=short | sort -u -r | while read DATE; do
311
311
echo
312
- echo [$DATE ]
312
+ echo " [$DATE ]"
313
313
git log --no-merges --format=" * (%h) %s by %an <%ae>" --since=" $DATE 00:00:00" --until=" $DATE 24:00:00"
314
314
NEXT=$DATE
315
315
done
You can’t perform that action at this time.
0 commit comments