From d1922aa5c91c8dba38a3e0eb0e100e08dee12ef8 Mon Sep 17 00:00:00 2001
From: askiiart <askiiart@noreply.localhost>
Date: Wed, 26 Feb 2025 01:57:00 +0000
Subject: [PATCH] repo not just loose packages, actually

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index ae9b913..602e51b 100644
--- a/README.md
+++ b/README.md
@@ -19,13 +19,13 @@
 
 ## Packaging
 
-- The directory for built packages is specified with the `PACKAGES_DIR` environment variable, falling back to `/packages`
-  - They should be placed in `$PACKAGES_DIR/[package name]/`
+- The package repo is specified with the `REPO_DIR` environment variable, falling back to `/repo`
 - Packages should be built on the distro they're for, unless there's a specific reason not to.
-- There should be a branch named after a distro for each distro it's for, e.g. `fedora` for Fedora.
+- There should be a branch named after the distro for each distro it's for, e.g. `fedora` for Fedora.
 - Must grab all assets locally, must not *require* getting packages from a URL, even if it's available publicly and easily.
   - Extra optional functionality like that is okay though.
   - i.e. can't grab from [here](https://askiiart.net/repos/archives/polycat/), must instead grab from `$COMPILED_DIR/polycat/`
+- Must update the repo after building the package
 
 ---