fix stow function

This commit is contained in:
Kendall Whitman
2026-02-05 18:10:26 -06:00
parent b1ad5187f4
commit 0937aa4e6e
2 changed files with 1 additions and 1 deletions

View File

@@ -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', '--', '.'])