From 8dd7c7a94e883bc87cc931d15e66c1bf24e8867e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 31 Aug 2025 13:53:06 +0200 Subject: [PATCH] Make default ENVs available here and reuse --- install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 0be3aa1..1f55c4f 100755 --- a/install.sh +++ b/install.sh @@ -3,8 +3,9 @@ # Exit immediately if a command exits with a non-zero status set -eE -export PATH="$HOME/.local/share/omarchy/bin:$PATH" -OMARCHY_INSTALL=~/.local/share/omarchy/install +OMARCHY_PATH="$HOME/.local/share/omarchy" +OMARCHY_INSTALL="$OMARCHY_PATH/install" +export PATH="$OMARCHY_PATH/bin:$PATH" # Preparation source $OMARCHY_INSTALL/preflight/show-env.sh