void: add xqupdate function

master
an 2020-06-02 06:59:29 -06:00
父節點 9adc30c955
當前提交 3be4d85b6c
共有 1 個檔案被更改,包括 13 行新增0 行删除

查看文件

@ -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