fix debian/rules: recreate file with proper tabs using cat heredoc
Some checks failed
Build and Publish Debian Package / Build Debian Package (push) Failing after 1m20s
Some checks failed
Build and Publish Debian Package / Build Debian Package (push) Failing after 1m20s
This commit is contained in:
parent
9216624404
commit
77e2ecf34d
1 changed files with 1 additions and 8 deletions
9
debian/rules
vendored
Executable file → Normal file
9
debian/rules
vendored
Executable file → Normal file
|
|
@ -1,7 +1,5 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
# dh_python3 will install the python modules
|
||||
# and handle byte-compilation
|
||||
export PYBUILD_NAME=mock
|
||||
|
||||
%:
|
||||
|
|
@ -9,18 +7,13 @@ export PYBUILD_NAME=mock
|
|||
|
||||
override_dh_auto_install:
|
||||
dh_auto_install
|
||||
# Create necessary directories
|
||||
mkdir -p debian/mock/usr/bin
|
||||
mkdir -p debian/mock/usr/share/mock/configs
|
||||
mkdir -p debian/mock/usr/share/doc/mock
|
||||
# Install the mock executable
|
||||
install -D -m 755 deb_mock/cli.py debian/mock/usr/bin/mock
|
||||
# Install configuration files
|
||||
install -D -m 644 deb_mock/configs/*.yaml debian/mock/usr/share/mock/configs/
|
||||
# Install documentation
|
||||
install -D -m 644 README.md debian/mock/usr/share/doc/mock/README.md
|
||||
install -D -m 644 docs/*.md debian/mock/usr/share/doc/mock/ 2>/dev/null || true
|
||||
|
||||
override_dh_auto_test:
|
||||
# Skip tests during package build - they're run in CI/CD
|
||||
@echo "Skipping tests during package build"
|
||||
@echo "Skipping tests during package build"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue