Skip to content

Commit

Permalink
PKGBUILD: Ignore pruning errors
Browse files Browse the repository at this point in the history
Since we manually remove paths from the source tarball
in CI now this script fails to delete some non existant
files.
  • Loading branch information
networkException committed Jul 29, 2024
1 parent 0649420 commit 1f51900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

pkgname=ungoogled-chromium
pkgver=127.0.6533.72
pkgrel=5
pkgrel=6
_launcher_ver=8
_system_clang=1
# ungoogled chromium variables
Expand Down Expand Up @@ -148,7 +148,7 @@ prepare() {
_ungoogled_repo="$srcdir/$pkgname-$_uc_ver"
_utils="${_ungoogled_repo}/utils"
msg2 'Pruning binaries'
python "$_utils/prune_binaries.py" ./ "$_ungoogled_repo/pruning.list"
python "$_utils/prune_binaries.py" ./ "$_ungoogled_repo/pruning.list" || echo "some errors"
msg2 'Applying patches'
python "$_utils/patches.py" apply ./ "$_ungoogled_repo/patches"
msg2 'Applying domain substitution'
Expand Down

0 comments on commit 1f51900

Please sign in to comment.