1
0
mirror of synced 2026-02-27 00:39:51 +00:00

Fix bashism in release testing target "tidy"

This commit is contained in:
Axel Beckert
2023-01-29 21:10:38 +01:00
parent ede684baaa
commit 2527e25beb
2 changed files with 3 additions and 2 deletions

View File

@@ -316,9 +316,9 @@ author-test:
#
tidy:
if [ -x /usr/bin/perltidy ]; then \
for i in bin/*-*[^~]; do \
for i in $(ls -1 bin/*-* | grep -vE '~$'); do \
echo "tidying $$i"; \
perltidy $$i \
perltidy $$i \
; done \
; fi

1
debian/changelog vendored
View File

@@ -2,6 +2,7 @@ xen-tools (4.9.2-1) UNRELEASED; urgency=medium
* New upstream maintenance release
+ Update list of Ubuntu and Debian releases.
+ Fix bashism in release testing target "tidy".
* Update upstream signing key to update its expiry date.
-- Axel Beckert <abe@debian.org> Mon, 09 Jan 2023 04:42:57 +0100