void: add xqupdate function

master
an 2020-06-02 06:59:29 -06:00
parent 9adc30c955
commit 3be4d85b6c
1 changed files with 13 additions and 0 deletions

View File

@ -25,3 +25,16 @@ function xqrebuild -d "Rebuild some of our srcpkgs"
xqdir
xbulk $argv 2>&1 | tee /tmp/xqrebuild.log | less +F
end
function xqupdate -d "Updates the srcpkg repository for use"
echo "This command must be done after you have updated."
echo "If you haven't yet, run `sudo xbps-install -Su'."
echo "Type 'ok' to continue, or anything else to exit."
if test (read) != "ok"
exit 1
end
xqdir
git pull
rm -rf $XBPS_MASTERDIR
./xbps-src binary-bootstrap
end