diff options
| author | Nippy <nippy@rp1.hu> | 2026-05-24 10:46:10 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-05-24 10:46:10 +0200 |
| commit | 8fd6e2befe19d073983134e2921184000e4c27f8 (patch) | |
| tree | 4bca1b734b05b1146cb05c8f6d0f31cd05f5c4bf | |
| parent | 01f549a24b4733908e8f37183e903c938c19e49b (diff) | |
| download | RaveOS-PKGBUILD-8fd6e2befe19d073983134e2921184000e4c27f8.tar.gz RaveOS-PKGBUILD-8fd6e2befe19d073983134e2921184000e4c27f8.zip | |
fix: b2sums dinamikus SKIP generalas source meretehez igazodva
| -rw-r--r-- | linux-raveos/PKGBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/linux-raveos/PKGBUILD b/linux-raveos/PKGBUILD index 1466281..db430d6 100644 --- a/linux-raveos/PKGBUILD +++ b/linux-raveos/PKGBUILD @@ -594,6 +594,7 @@ for _p in "${pkgname[@]}"; do }" done -b2sums=('SKIP' - 'SKIP' - 'SKIP') +b2sums=() +for _i in "${source[@]}"; do + b2sums+=('SKIP') +done |