mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
Improve git subcommand detection (#4121)
* refactor: improve git subcommand detection * fix: remove redundant case
This commit is contained in:
parent
6bd1cee2f3
commit
fb3e0f2ac1
1 changed files with 23 additions and 9 deletions
|
@ -2,26 +2,40 @@
|
|||
|
||||
set -e
|
||||
|
||||
find_git_command() {
|
||||
# This function searches through the provided arguments
|
||||
# to find the first non-option argument, which is assumed
|
||||
# to be the git subcommand.
|
||||
find_git_subcommand() {
|
||||
skip_next=0 # Flag to indicate if the next argument should be skipped.
|
||||
|
||||
for arg in "$@"; do
|
||||
if test "$SKIP" = 1; then
|
||||
SKIP=0
|
||||
# If the skip_next flag is set, skip this argument.
|
||||
if [ "$skip_next" -eq 1 ]; then
|
||||
skip_next=0
|
||||
continue
|
||||
fi
|
||||
|
||||
# Check for options that require skipping the next argument.
|
||||
case $arg in
|
||||
-C) SKIP=1; continue;;
|
||||
-*);;
|
||||
*)
|
||||
echo "$arg"
|
||||
return # found the command!
|
||||
-C | --git-dir | --work-tree | --namespace | --super-prefix | --config-env | -c)
|
||||
skip_next=1 # The next argument is a value for these options.
|
||||
continue
|
||||
;;
|
||||
-*)
|
||||
continue # Skip other options that start with '-'.
|
||||
;;
|
||||
esac
|
||||
|
||||
# If we reach this point, it's likely the git subcommand.
|
||||
echo "$arg"
|
||||
return
|
||||
done
|
||||
}
|
||||
|
||||
libexec="$(cd "$(dirname "$0")/.." && pwd)"/libexec
|
||||
|
||||
# extract the git subcommand
|
||||
cmd=$(find_git_command "$@")
|
||||
cmd=$(find_git_subcommand "$@")
|
||||
|
||||
_provides() {
|
||||
if foo="$(pkgx --provider git-"$cmd")"; then
|
||||
|
|
Loading…
Reference in a new issue