Skip to content

Commit bbb4b67

Browse files
committed
merge-octopus: avoid dashed invocation
A long time ago, in turn a long time after introducing builtins and moving Git's scripts to libexec/git-core/, we deprecated the invocation of dashed commands. The merge-octopus script is a holdover from the time before that, as it still tries to invoke a builtin by its dashed form. Let's just not. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 4c1243e commit bbb4b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-merge-octopus.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ do
100100
if test $? -ne 0
101101
then
102102
gettextln "Simple merge did not work, trying automatic merge."
103-
git-merge-index -o git-merge-one-file -a ||
103+
git merge-index -o git-merge-one-file -a ||
104104
OCTOPUS_FAILURE=1
105105
next=$(git write-tree 2>/dev/null)
106106
fi

0 commit comments

Comments
 (0)