From 57d0ebda205fa92ab71f723c3edb97526d354f1f Mon Sep 17 00:00:00 2001 From: lachtan Date: Thu, 18 Sep 2025 20:22:02 +0200 Subject: [PATCH] Make things simpler --- rc/cargo.sh | 4 +--- rc/wsl.sh | 5 ----- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 rc/wsl.sh diff --git a/rc/cargo.sh b/rc/cargo.sh index 2d000a9..56fab68 100644 --- a/rc/cargo.sh +++ b/rc/cargo.sh @@ -1,3 +1 @@ -if [[ -f "$HOME/.cargo/env" ]]; then - source "$HOME/.cargo/env" -fi +source_try "$HOME/.cargo/env" diff --git a/rc/wsl.sh b/rc/wsl.sh deleted file mode 100644 index c3ee5df..0000000 --- a/rc/wsl.sh +++ /dev/null @@ -1,5 +0,0 @@ -if is_wsl; then - prepend_path_try "$HOME/.local/bin" - append_path_try "$HOME/.arkade/bin" - append_path_try "$HOME/.cargo/bin" -fi