summaryrefslogtreecommitdiffstatshomepage
path: root/bash/.bash_profile
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-08-18 14:31:57 -0500
committerToby Vincent <tobyv13@gmail.com>2022-08-18 14:31:57 -0500
commitc6684b0e395db4fd17dfddb0b4d3f28a21b630f4 (patch)
treea57b2e0d1d774d7a6f5395d5c5621fb6c2660f68 /bash/.bash_profile
parent2538494e96a814afd6e9e8b40a79d831b6bbaffc (diff)
refactor(bash): source zshenv directly from bash_profile
Diffstat (limited to 'bash/.bash_profile')
-rw-r--r--bash/.bash_profile8
1 files changed, 6 insertions, 2 deletions
diff --git a/bash/.bash_profile b/bash/.bash_profile
index ab5dfcc..515cf94 100644
--- a/bash/.bash_profile
+++ b/bash/.bash_profile
@@ -1,3 +1,7 @@
-. ~/.profile
+#!/bin/bash
-if [[ $- == *i* ]]; then . ~/.bashrc; fi \ No newline at end of file
+# shellcheck disable=1091
+. "$HOME/.zshenv"
+
+# shellcheck disable=1090
+if [[ $- == *i* ]]; then . ~/.bashrc; fi