index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Levente Polyak <anthraxx@archlinux.org> | 2024-04-19 21:16:06 +0200 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2024-04-23 20:23:49 +0200 |
commit | 9a5181db5bfa78d33d3123145ea4c84375f2e8f2 (patch) | |
tree | 0fa37ffd91753cb57368eb7d4546fa0aeeead82c /src/lib/build | |
parent | 55c2ca1312e649916a9a4469b7e88464f2f20c38 (diff) |
-rw-r--r-- | src/lib/build/build.sh | 5 |
diff --git a/src/lib/build/build.sh b/src/lib/build/build.sh index c35d70f..c3e05be 100644 --- a/src/lib/build/build.sh +++ b/src/lib/build/build.sh @@ -437,10 +437,11 @@ pkgctl_build() { stat_done fi - # update checksums if any sources are declared if (( UPDATE_CHECKSUMS )) && (( ${#source[@]} >= 1 )); then - updpkgsums + if ! result=$(pkgbuild_update_checksums /dev/stderr); then + die "${result}" + fi fi # re-source the PKGBUILD if it changed |