From 9705593d7ed76c591ffd15e318411eb37ccb9f7f Mon Sep 17 00:00:00 2001 From: Lukas Kucera <85391931+kucera-lukas@users.noreply.github.com> Date: Mon, 8 May 2023 20:56:36 +0200 Subject: [PATCH] latest changes (#42) --- home/dot_bash_profile | 3 +++ home/dot_bashrc | 3 +++ home/dot_config/private_fish/functions/upall.fish | 3 +++ 3 files changed, 9 insertions(+) diff --git a/home/dot_bash_profile b/home/dot_bash_profile index 22b3a51..f759f0a 100644 --- a/home/dot_bash_profile +++ b/home/dot_bash_profile @@ -9,3 +9,6 @@ fi if [ -f ~/.bashrc ]; then . ~/.bashrc fi + +# Created by `pipx` on 2023-02-11 22:15:36 +export PATH="$PATH:/home/lkucera/.local/bin" diff --git a/home/dot_bashrc b/home/dot_bashrc index ad4581e..fc65317 100644 --- a/home/dot_bashrc +++ b/home/dot_bashrc @@ -25,3 +25,6 @@ if [ -d ~/.bashrc.d ]; then fi unset rc + +# Created by `pipx` on 2023-02-11 22:15:36 +export PATH="$PATH:/home/lkucera/.local/bin" diff --git a/home/dot_config/private_fish/functions/upall.fish b/home/dot_config/private_fish/functions/upall.fish index 367c726..719b9c6 100644 --- a/home/dot_config/private_fish/functions/upall.fish +++ b/home/dot_config/private_fish/functions/upall.fish @@ -17,6 +17,9 @@ function upall --description "update everything" echo "updating pipx applications..." pipx upgrade-all + echo "updating rust toolchains and rustup..." + rustup update + echo "updating cargo executables..." cargo install-update -a end