From 559ef90d61736c0c04e95a558840c7d522aadf81 Mon Sep 17 00:00:00 2001 From: foefl Date: Thu, 15 May 2025 11:55:09 +0200 Subject: [PATCH] update build script --- scripts/build.ps1 | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/scripts/build.ps1 b/scripts/build.ps1 index c736f3e..87529a9 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -1,17 +1,10 @@ -# pdm build --no-sdist -d build/ +pdm build --no-sdist -d build/ # Configuration $sourceDir = ".\build" $destDir = "..\01_releases\runtime" $packagePrefix = "delta_barth-" -$packageSuffix = ".whl" # <- You can change this to any suffix pattern like "-py3-none-any.whl" - - -# === Configuration === -# $sourceDir = "C:\Path\To\Packages" -# $destDir = "C:\Path\To\Destination" -# $packagePrefix = "my-package-" -# $packageSuffix = "-py.whl" # Customize as needed +$packageSuffix = ".whl" # change this to any suffix pattern like "-py3-none-any.whl" # Ensure destination exists if (-not (Test-Path $destDir)) {