summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmish2022-02-14 15:08:43 +0530
committerAmish2022-02-14 15:08:43 +0530
commit87b7f028c929c19072df7eb61cb50ddffea1d002 (patch)
tree755bef84f470e189aa5992e7fd9443f7e408f4ae
parent15b08891b4a88307d2e0a65a97417e283216a09f (diff)
downloadaur-87b7f028c929c19072df7eb61cb50ddffea1d002.tar.gz
Do not make .sh files executable. Some files alter files in /opt.
But we want even normal user to be able to run embridge.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d2f19532826e..8f5eb45d541b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = embridge-bin
pkgdesc = Secure channel between network applications and keys stored in hardware tokens
pkgver = 3.1.0.0
- pkgrel = 1
+ pkgrel = 2
url = https://embridge.emudhra.com
arch = x86_64
license = custom
diff --git a/PKGBUILD b/PKGBUILD
index 2d12d3629e3b..90a8cb41c9db 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Amish <contact at via dot aur>
pkgname=embridge-bin
pkgver=3.1.0.0
-pkgrel=1
+pkgrel=2
pkgdesc='Secure channel between network applications and keys stored in hardware tokens'
arch=(x86_64)
url='https://embridge.emudhra.com'
@@ -18,7 +18,7 @@ package() {
cd "${pkgdir}/opt/eMudhra/emBridge"
find . -type f -exec chmod 644 {} \+
find . -name '*.dll' -exec chmod 755 {} \+
- find . -name '*.sh' -exec chmod 755 {} \+
+# find . -name '*.sh' -exec chmod 755 {} \+
find . -name '*.so' -exec chmod 755 {} \+
chmod 755 createdump emBridge
install -Dm755 /dev/stdin "${pkgdir}/usr/bin/embridge" << 'EOF'