Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/xorgxrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Pitstick <cmp@pitstick.net>2022-03-21 03:53:29 +0300
committerChristopher Pitstick <cmp@pitstick.net>2022-03-21 03:53:29 +0300
commit45da35cb60c80fa5f35c1ce35c023ff7968becc8 (patch)
tree50a61c4dcb12c85672e146befe8b6c50e88b087c
parent752b7659773a11ca6d4600645547c06fdb8a23d9 (diff)
Fix build break in GitHub workflow
Need to add `apt-get update` to refresh the aptitude cache before installing dependencies. The same fix was introduced in XRDP here: https://github.com/neutrinolabs/xrdp/blob/dd968a98b097f8331a1ffbd4991130056b913833/scripts/install_xrdp_build_dependencies_with_apt.sh#L128
-rwxr-xr-xscripts/install_xorgxrdp_build_dependencies_with_apt.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/install_xorgxrdp_build_dependencies_with_apt.sh b/scripts/install_xorgxrdp_build_dependencies_with_apt.sh
index cb9e2dc..1346a28 100755
--- a/scripts/install_xorgxrdp_build_dependencies_with_apt.sh
+++ b/scripts/install_xorgxrdp_build_dependencies_with_apt.sh
@@ -40,7 +40,8 @@ in
;;
esac
-exec apt-get -yq \
+apt-get update
+apt-get -yq \
--no-install-suggests \
--no-install-recommends \
$APT_EXTRA_ARGS \