mirror of
https://github.com/Cheviiot/Nivora.git
synced 2026-08-03 15:51:12 +00:00
fix(telegram-desktop): ignore archive ownership on extraction
tsetup.tar.xz bakes in uid/gid 1000 from Telegram's release tooling; the sandboxed builder can't chown to it, so the build failed with "Невозможно изменить владельца". --no-same-owner/--no-same-permissions matches the pineconemc package's handling of the same issue.
This commit is contained in:
@@ -59,7 +59,7 @@ scripts=(
|
||||
package() {
|
||||
cd "${srcdir}"
|
||||
|
||||
tar -xJf tsetup.tar.xz
|
||||
tar --no-same-owner --no-same-permissions -xJf tsetup.tar.xz
|
||||
|
||||
install -dm755 "${pkgdir}/opt/telegram-desktop"
|
||||
install -Dm755 "Telegram/Telegram" "${pkgdir}/opt/telegram-desktop/Telegram"
|
||||
|
||||
Reference in New Issue
Block a user