blob: 9ae9a0a12f133de66157f3c8a6a1f65887aa83f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# xi PKGS... - like xbps-install -S, but take cwd repo and sudo/su into account
BRANCH=$(git symbolic-ref -q --short HEAD 2>/dev/null)
ADDREPO="--repository=hostdir/binpkgs/$BRANCH
--repository=../hostdir/binpkgs/$BRANCH
--repository=../../hostdir/binpkgs/$BRANCH
--repository=hostdir/binpkgs
--repository=../hostdir/binpkgs
--repository=../../hostdir/binpkgs"
SUDO=
if command -v sudo >/dev/null &&
sudo -l | grep -q -e ' ALL$' -e xbps-install; then
SUDO=sudo
elif [ "$(whoami)" != root ]; then
SUDO='su root -c '\''"$@"'\'' -- -'
fi
$SUDO xbps-install $ADDREPO -S "$@"
|