fix: use editable install so updates apply to the repo directory

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Justin Bollinger
2026-02-18 14:47:15 -05:00
parent b6524cbdc4
commit 603375d83f
+2 -5
View File
@@ -60,15 +60,12 @@ install: submodules vendor-assets
sudo apt-get install -y p7zip-full transmission-cli; \
else \
echo "Unsupported OS. Please install dependencies manually."; \
$(MAKE) clean-vendor; \
exit 1; \
fi
@uv tool install . --force --reinstall
@$(MAKE) clean-vendor
@uv tool install -e . --force --reinstall
update: submodules vendor-assets
@uv tool install . --force --reinstall
@$(MAKE) clean-vendor
@uv tool install -e . --force --reinstall
reinstall: uninstall install