From f0d8c7e093fb5fdb9fadafcd2ab51d203a4568b5 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Fri, 30 Aug 2024 20:26:19 +0900 Subject: [PATCH] reorder .profile --- .profile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.profile b/.profile index 999ad58..3cbcf01 100644 --- a/.profile +++ b/.profile @@ -1,7 +1,3 @@ -export PATH="$HOME/.local/bin:$PATH" -export DENO_INSTALL_ROOT="${HOME}/.local" -[ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" -[ -n "$BASH_VERSION" ] && . "$HOME/.bashrc" if [ -d /usr/local/Homebrew ]; then export HOMEBREW_PREFIX="/usr/local" export HOMEBREW_CELLAR="/usr/local/Cellar" @@ -17,3 +13,7 @@ else export MANPATH="/home/linuxbrew/.linuxbrew/share/man${MANPATH+:$MANPATH}:" export INFOPATH="/home/linuxbrew/.linuxbrew/share/info:${INFOPATH:-}" fi +[ -n "$BASH_VERSION" ] && . "$HOME/.bashrc" +[ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" +export DENO_INSTALL_ROOT="${HOME}/.local" +export PATH="$HOME/.local/bin:$PATH"