mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-09 19:50:25 +03:00
Merge pull request #21 from sftp/bash-completion
bash-completion: complete -{i,b} when git (not rsync) used for repo
This commit is contained in:
commit
e0aad3b78f
@ -65,10 +65,20 @@ _sbopkg()
|
||||
esac
|
||||
done
|
||||
|
||||
if [ ! -r "$REPO_ROOT/$REPO_NAME/$REPO_BRANCH/SLACKBUILDS.TXT" ]; then
|
||||
return 0
|
||||
if [ -d "$QUEUEDIR" ]; then
|
||||
local queues=($(cd $QUEUEDIR; compgen -f -X "!*.sqf" -- "$cur"))
|
||||
fi
|
||||
|
||||
if [ -r "$REPO_ROOT/$REPO_NAME/$REPO_BRANCH/SLACKBUILDS.TXT" ]; then
|
||||
COMPREPLY=($(sed -ne "/^SLACKBUILD NAME: $cur/{s/^SLACKBUILD NAME: //;p}" \
|
||||
$REPO_ROOT/$REPO_NAME/$REPO_BRANCH/SLACKBUILDS.TXT)
|
||||
$( cd $QUEUEDIR; compgen -f -X "!*.sqf" -- "$cur" ) )
|
||||
${queues[@]})
|
||||
elif [ -d "$REPO_ROOT/$REPO_NAME/" ]; then
|
||||
COMPREPLY=($(find $REPO_ROOT/$REPO_NAME \
|
||||
\! -path $REPO_ROOT/$REPO_NAME/'.git/*' \
|
||||
-mindepth 2 -maxdepth 2 \
|
||||
-type d -name $cur\* \
|
||||
-printf '%f\n')
|
||||
${queues[@]})
|
||||
fi
|
||||
} && complete -o filenames -F _sbopkg sbopkg
|
||||
|
Loading…
Reference in New Issue
Block a user