From fe487f2a903119943c2ed3473dad1cbb903df1c3 Mon Sep 17 00:00:00 2001 From: FaultyBranches Date: Thu, 2 Apr 2026 06:28:36 -0500 Subject: [PATCH] fix: Updating the deploy script to use relative dot notation which helps deploy on MacOS more easily. --- deploy.sh | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/deploy.sh b/deploy.sh index 56ee0f1..f7cc654 100755 --- a/deploy.sh +++ b/deploy.sh @@ -6,18 +6,17 @@ # Relative path/name as keys, destination path as values declare -A configs=( - ["zsh/zshrc"]="$HOME/.zshrc" - ["zsh/zsh_functions"]="$HOME/.config/zsh/zsh_functions.zsh" - ["zsh/zsh_aliases"]="$HOME/.config/zsh/zsh_aliases.zsh" - ["zsh/zsh_exports"]="$HOME/.config/zsh/zsh_exports.zsh" - ["zsh/fb-custom.zsh-theme"]="$HOME/.oh-my-zsh/custom/themes" - ["nvim/init.lua"]="$HOME/.config/nvim/init.lua" - ["nvim/lua"]="$HOME/.config/nvim/" - ["nvim/after"]="$HOME/.config/nvim/" - ["nvim/snippets"]="$HOME/.config/nvim/" - ["tmux.conf"]="$HOME/.tmux.conf" - ["wezterm/wezterm.lua"]="$HOME/.config/wezterm/wezterm.lua" - ["npmrc"]="$HOME/.npmrc" + ["./zsh/zshrc"]="$HOME/.zshrc" + ["./zsh/zsh_functions"]="$HOME/.config/zsh/zsh_functions.zsh" + ["./zsh/zsh_aliases"]="$HOME/.config/zsh/zsh_aliases.zsh" + ["./zsh/zsh_exports"]="$HOME/.config/zsh/zsh_exports.zsh" + ["./zsh/fb-custom.zsh-theme"]="$HOME/.oh-my-zsh/custom/themes" + ["./nvim/init.lua"]="$HOME/.config/nvim/init.lua" + ["./nvim/lua"]="$HOME/.config/nvim/" + ["./nvim/after"]="$HOME/.config/nvim/" + ["./nvim/snippets"]="$HOME/.config/nvim/" + ["./tmux.conf"]="$HOME/.tmux.conf" + ["./wezterm/wezterm.lua"]="$HOME/.config/wezterm/wezterm.lua" ) declare -a config_directories=(