Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -e

# run command if it is not starting with a "-", is not a git subcommand and is an executable in PATH
if [ "${#}" -gt "0" ] && \
[ "${1#-}" == "${1}" ] && \
[ "${1#-}" = "${1}" ] && \
[ ! -x "/usr/libexec/git-core/git-${1}" ] && \
command -v "${1}" > /dev/null 2>&1 ; then
exec "${@}"
Expand Down