xbps-src: don't set -i to xbps-install(1).
As reported by @pullmoll via https://github.com/void-linux/xbps/issues/190 the culprit is this assignment, rather than in the xbps code. Tested with local and remote repos, no regressions found.
This commit is contained in:
parent
dd26a0ea62
commit
f7412cdf8d
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ install_pkg_from_repos() {
|
||||||
|
|
||||||
cmd=$XBPS_INSTALL_CMD
|
cmd=$XBPS_INSTALL_CMD
|
||||||
[[ $cross ]] && cmd=$XBPS_INSTALL_XCMD
|
[[ $cross ]] && cmd=$XBPS_INSTALL_XCMD
|
||||||
$cmd ${XBPS_SKIP_REMOTEREPOS:+-i} -AIy "$@" >$tmplogf 2>&1
|
$cmd -AIy "$@" >$tmplogf 2>&1
|
||||||
rval=$?
|
rval=$?
|
||||||
|
|
||||||
case "$rval" in
|
case "$rval" in
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue