diff options
Diffstat (limited to '.local/bin/update')
-rwxr-xr-x | .local/bin/update | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.local/bin/update b/.local/bin/update index 990f0cc..f49de9a 100755 --- a/.local/bin/update +++ b/.local/bin/update @@ -3,6 +3,7 @@ """ nvim '+PlugUpdate' sudo pacman -Syu +rustup update aur sync -unr nix-channel --update && nix-env -u """ @@ -56,6 +57,9 @@ try: for command in commands_noconfirm: command() + log('Running `rustup update`...') + subprocess.run(['rustup', 'update']) + log('Running `nix-channel --update`...') subprocess.run(['nix-channel', '--update']) |