From c61205cf9b4aea80eddecb673ec5efea4b9ce318 Mon Sep 17 00:00:00 2001 From: Forkless Date: Tue, 12 May 2026 01:46:24 +0200 Subject: [PATCH] chore: move build.sh to tools/ directory --- Makefile | 2 +- build.sh => tools/build.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename build.sh => tools/build.sh (100%) diff --git a/Makefile b/Makefile index c1e394d..de8969c 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ all: translations # ── Build ──────────────────────────────────────────────────────────────────── build: @echo "=== Building Piperless ===" - ./build.sh + ./tools/build.sh # ── Translations ───────────────────────────────────────────────────────────── translations: diff --git a/build.sh b/tools/build.sh similarity index 100% rename from build.sh rename to tools/build.sh