mirror of
https://github.com/endeavouros-team/PKGBUILDS.git
synced 2026-06-13 01:34:36 +00:00
[eos-log-tool] small performance improvement
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
pkgname=eos-log-tool
|
||||
pkgdesc="Gathers selected system logs and sends them to the internet."
|
||||
url="https://github.com/endeavouros-team/PKGBUILDS/raw/master/$pkgname"
|
||||
pkgver=25.5.1
|
||||
pkgver=25.10
|
||||
pkgrel=1
|
||||
|
||||
arch=('any')
|
||||
@@ -27,7 +27,7 @@ source=(
|
||||
$pkgname.desktop
|
||||
$pkgname.conf
|
||||
)
|
||||
sha512sums=('6f94a4245909d3b8c32fa02473d20f1ec686b64ea0cf3fa446703972e7a32cda1beca08747ecf2f5289701b0d536db8047d01699f1cfe0ff74082d0498d103f9'
|
||||
sha512sums=('e9283974f96bd509dd9bb9b516421a7515d80220cf916d97757a1eb581da26f698db735546358235f97ddb40f8030465833724aa3ab26cf7e2ff36e940c96b68'
|
||||
'6cd144109818f0da59a571956b55f0688b41f2e0bf467b059a1a4157206b038bd339955b1cb33a97c2eb51e0824b165b5e04656403db1fef39ee2797fb6a0189'
|
||||
'781f2d48101d0a0a23da049ccbaa70d3da30dda7e2e31458bcb671ceb25721dec86c7f32d87245554e5a3043cdf35fd9664761efe0a8cc82aeb982055488d229')
|
||||
|
||||
|
||||
@@ -302,7 +302,7 @@ Columnize() { column -t -s "$separator" ; }
|
||||
|
||||
ForeignPkgInfo() {
|
||||
local data
|
||||
readarray -t data <<< $(LANG=C pacman -Qmi | grep -P '^Name|^Version|^Description')
|
||||
readarray -t data < <(LANG=C pacman -Qmi | grep -P '^Name|^Version|^Description')
|
||||
PrintPkgData
|
||||
}
|
||||
NativePkgInfo() {
|
||||
@@ -311,7 +311,7 @@ NativePkgInfo() {
|
||||
expac -Q "%n$separator%v" | Columnize
|
||||
else
|
||||
local data
|
||||
readarray -t data <<< $(LANG=C pacman -Qni | grep -P '^Name|^Version|^Description')
|
||||
readarray -t data < <(LANG=C pacman -Qni | grep -P '^Name|^Version|^Description')
|
||||
PrintPkgData
|
||||
fi
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user