mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-30 22:26:42 +00:00
Merge pull request #6317 from mglae/le10_systools_129
system-tools: rev 129; Set executable flag of 7z/7za
This commit is contained in:
commit
e2a61ef722
@ -1,3 +1,6 @@
|
||||
129
|
||||
- Fix (set) 7z/7za executable flag
|
||||
|
||||
128
|
||||
- Add mmc-utils
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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} "$@"
|
||||
|
@ -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} "$@"
|
||||
|
Loading…
x
Reference in New Issue
Block a user