From 40fa720ad9673be115dae9a95c021e8f787f2722 Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 26 Nov 2024 07:14:03 +0000 Subject: [PATCH] fix: correct typo in virtual environment activation path in README The activation script path in the installation instructions was missing a forward slash, changing 'bin/activate' to 'bin.activate'. This fix restores the correct path for sourcing the Python virtual environment. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 76003d3..b59b27a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ It doesn't have captcha or whatsoever. It's designed for public use, as long the ## Installation 1. `make ensure_venv` 2. `make install` -3. `source ./.venv/bin.activate` +3. `source ./.venv/bin/activate` 4. `rupload.serve` (See parameters below. Running with default config using no parameters works too.) ## Usage