From 0937aa4e6ead64c1993117e1728b01be8887249c Mon Sep 17 00:00:00 2001 From: Kendall Whitman Date: Thu, 5 Feb 2026 18:10:26 -0600 Subject: [PATCH] fix stow function --- setup/arch/config.py => config.py | 0 setup/arch/install.py => install.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename setup/arch/config.py => config.py (100%) rename setup/arch/install.py => install.py (95%) diff --git a/setup/arch/config.py b/config.py similarity index 100% rename from setup/arch/config.py rename to config.py diff --git a/setup/arch/install.py b/install.py similarity index 95% rename from setup/arch/install.py rename to install.py index 24963c4..77619cd 100644 --- a/setup/arch/install.py +++ b/install.py @@ -44,7 +44,7 @@ def install_apps(): def stow_dot_files(): for dotfile in config.DOTFILES: - subprocess.run(['stow', f"../../{dotfile}", '--adopt']) + subprocess.run(['stow', f"{dotfile}", '--adopt']) subprocess.run(['git', 'checkout', '--', '.'])