From 2d2aa45ec534a9f85eb767dd06f8438fe76a20b1 Mon Sep 17 00:00:00 2001 From: Khushboo Vashi Date: Mon, 10 Jun 2024 16:50:59 +0530 Subject: [PATCH] Another attempt to fix Debian installation directory permission. --- pkg/debian/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/debian/build.sh b/pkg/debian/build.sh index f1c100eaf..64cc9cb07 100755 --- a/pkg/debian/build.sh +++ b/pkg/debian/build.sh @@ -57,7 +57,7 @@ Description: The core server package for pgAdmin. pgAdmin is the most popular an EOF # Build the Debian package for the server -fakeroot dpkg-deb --chmod -R u+rwX,go+rX,go-w "${SERVERROOT}" --build "${SERVERROOT}" "${DISTROOT}/${APP_NAME}-server_${APP_LONG_VERSION}_${OS_ARCH}.deb" +fakeroot --chmod -R u+rwX,go+rX,go-w "${SERVERROOT}" dpkg-deb --build "${SERVERROOT}" "${DISTROOT}/${APP_NAME}-server_${APP_LONG_VERSION}_${OS_ARCH}.deb" # # Desktop package @@ -79,7 +79,7 @@ Description: The desktop user interface for pgAdmin. pgAdmin is the most popular EOF # Build the Debian package for the desktop -fakeroot dpkg-deb --chmod -R u+rwX,go+rX,go-w "${DESKTOPROOT}" --build "${DESKTOPROOT}" "${DISTROOT}/${APP_NAME}-desktop_${APP_LONG_VERSION}_${OS_ARCH}.deb" +fakeroot --chmod -R u+rwX,go+rX,go-w "${DESKTOPROOT}" dpkg-deb --build "${DESKTOPROOT}" "${DISTROOT}/${APP_NAME}-desktop_${APP_LONG_VERSION}_${OS_ARCH}.deb" # # Web package @@ -108,7 +108,7 @@ mkdir -p "${WEBROOT}/etc/apache2/conf-available" cp "${SOURCEDIR}/pkg/debian/pgadmin4.conf" "${WEBROOT}/etc/apache2/conf-available" # Build the Debian package for the web -fakeroot dpkg-deb --chmod -R u+rwX,go+rX,go-w "${WEBROOT}" --build "${WEBROOT}" "${DISTROOT}/${APP_NAME}-web_${APP_LONG_VERSION}_all.deb" +fakeroot --chmod -R u+rwX,go+rX,go-w "${WEBROOT}" dpkg-deb --build "${WEBROOT}" "${DISTROOT}/${APP_NAME}-web_${APP_LONG_VERSION}_all.deb" # # Meta package