Merge pull request #6317 from mglae/le10_systools_129

system-tools: rev 129; Set executable flag of 7z/7za
This commit is contained in:
CvH 2022-03-20 14:37:55 +01:00 committed by GitHub
commit e2a61ef722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,6 @@
129
- Fix (set) 7z/7za executable flag
128
- Add mmc-utils

View File

@ -3,7 +3,7 @@
PKG_NAME="system-tools"
PKG_VERSION="1.0"
PKG_REV="128"
PKG_REV="129"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="https://libreelec.tv"

View File

@ -1,2 +1,4 @@
#!/bin/sh
exec /storage/.kodi/addons/virtual.system-tools/lib/p7zip/7z "$@"
file=/storage/.kodi/addons/virtual.system-tools/lib/p7zip/7z
[ ! -x ${file} ] && chmod +x ${file}
exec ${file} "$@"

View File

@ -1,2 +1,4 @@
#!/bin/sh
exec /storage/.kodi/addons/virtual.system-tools/lib/p7zip/7za "$@"
file=/storage/.kodi/addons/virtual.system-tools/lib/p7zip/7za
[ ! -x ${file} ] && chmod +x ${file}
exec ${file} "$@"