apt update

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2023-04-22 13:29:31 -05:00
parent 43e36b8408
commit 4cfdff5db8
1 changed files with 5 additions and 0 deletions

View File

@ -58,6 +58,11 @@ func mainTab(n *gui.Node) {
rn.NewButton("apt sources", func () {
xterm("cd ~/jcarr/setup; make setup-apt-sources; make setup-apt-file")
})
rn.NewButton("apt update", func () {
myGui.CloseToolkit("gocui")
doCmd("apt update")
os.Exit(0)
})
rn.NewButton("purge rc-only", func () {
xterm("cd ~/jcarr/setup; make reset-purge-rc-only-packages")
})