index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2023-07-08 11:02:55 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2023-07-08 11:02:55 +0200 |
commit | afb61048b689b15b4e21e0ff94d03a6a3aa79954 (patch) | |
tree | d1542870bfc72819012cac8a687405822baaf73c | |
parent | a51f2bbec16f551dd604780dcb4218107c5926a6 (diff) |
-rwxr-xr-x | lib/common-functions | 2 |
diff --git a/lib/common-functions b/lib/common-functions index 49d6f6f..5c2e333 100755 --- a/lib/common-functions +++ b/lib/common-functions @@ -478,7 +478,7 @@ extract_source_directory() { curl -o "$pkgtarfile" -fLSs "https://buildmaster.archlinux32.org/upstream-packages/${pkgbase_translated}-${revision}.tar.gz" res=$? if [ "$res" -ne 0 ]; then - >&2 echo 'Download upstream-package from upstream via buildmaster cache failed. Curl exit code was $res.' + >&2 printf 'Download upstream-package from upstream via buildmaster cache failed. Curl exit code was %s.' "${res}" return 1 fi if [ -f "${pkgtarfile}" ]; then |