Skip to content

Commit 07bc585

Browse files
committed
Prevent "git-elegant: command not found" error on Brew
During the Brew's installation, the installed binary file won't be available in the PATH. That's why it should be invoked via a full path.
1 parent 0d70a6e commit 07bc585

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

install.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ main() {
6060
copy "${path}" ${INSTALL_PATH}
6161
fi
6262
echo "Elegant Git is installed to '${INSTALL_PATH}/bin/git-elegant'."
63-
git-elegant acquire-git
63+
${INSTALL_PATH}/bin/git-elegant acquire-git
6464
command -v git-elegant 1>/dev/null 2>&1 || next-steps ${INSTALL_PATH}
6565
}
6666

0 commit comments

Comments
 (0)