From d380917f8be1d9ecb8c3dd8ed80f37ac049465c5 Mon Sep 17 00:00:00 2001 From: Tim Andersson Date: Wed, 31 Jul 2024 16:15:13 +0100 Subject: [PATCH] fix: make connect-and-capture executable under debian/tests This script used for the autopkgtests is currently not executable, causing tests to fail like so: ``` ... 46s + xvfb-run -l /tmp/autopkgtest-lxc.ddq71bgy/downtmp/build.pjI/src/debian/tests/connect-and-capture xrdp-screenshot.png 47s /usr/bin/xvfb-run: 184: /tmp/autopkgtest-lxc.ddq71bgy/downtmp/build.pjI/src/debian/tests/connect-and-capture: Permission denied ... ``` This commit amends the issue by making the script executable, fixing the Permission denied error. --- debian/tests/connect-and-capture | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 debian/tests/connect-and-capture diff --git a/debian/tests/connect-and-capture b/debian/tests/connect-and-capture old mode 100644 new mode 100755