From 3d48bf06019f2a7fc000d010296312a99f2053d9 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Sun, 15 Oct 2017 16:49:26 +0200 Subject: [PATCH] fish: use apt instead of apt-get in upgrade --- shells/fish/functions/upgrade.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shells/fish/functions/upgrade.fish b/shells/fish/functions/upgrade.fish index feaac4f..e714f92 100644 --- a/shells/fish/functions/upgrade.fish +++ b/shells/fish/functions/upgrade.fish @@ -1,8 +1,8 @@ function upgrade --description "Upgrade the system" - sudo apt-get update - and sudo apt-get upgrade - and sudo apt-get dist-upgrade - and sudo apt-get autoremove + sudo apt update + and sudo apt upgrade + and sudo apt full-upgrade + and sudo apt autoremove sudo tlmgr update --self --all sudo npm update -g end