Merge pull request #15928 from keymanapp/maint/core/15905_build

maint(core): exclude `.configured` files from source tarball 🏗️

In the source tarball we don't want to include `.configured` files so that a build will call `npm i` first.

Fixes: #15905
Follows: #15926
This commit is contained in:
Eberhard Beilharz 2026-05-11 18:19:52 +02:00 committed by GitHub
commit cef3160c74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View file

@ -131,8 +131,8 @@ dpkg-source \
--tar-ignore=experiments \
--tar-ignore=debian \
--tar-ignore=.github \
--tar-ignore=.pc \
--tar-ignore=.vscode \
--tar-ignore=.configured \
--tar-ignore=.devcontainer \
--tar-ignore=.pc \
--tar-ignore=__pycache__ \

View file

@ -49,8 +49,6 @@ verify_can_build() {
local target_dir="$1"
builder_echo heading "Verifying build of tarball"
cd "${target_dir}"
# running `npm i` should happen automatically. See #15905
npm i
./build.sh configure,build
}