We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccba989 commit 0de1b52Copy full SHA for 0de1b52
1 file changed
build.sh
@@ -212,8 +212,11 @@ packages()
212
# Install packages beginning with 'https:'
213
mkdir -p ${uzip}${pkg_cachedir}/furybsd-https
214
for url in $(grep -e '^https' "${cwd}/settings/packages.$p"); do
215
+ # First, try installing this using the real major version
216
+ pkg_add_from_url "$url" furybsd-https "freebsd:$MAJOR:$arch" || true
217
+ # Second, try installing this using
218
# ABI=freebsd:12:$arch in an attempt to use package built on 12 for 13
- pkg_add_from_url "$url" furybsd-https "freebsd:12:$arch"
219
+ pkg_add_from_url "$url" furybsd-https "freebsd:12:$arch" || true
220
done
221
222
# Install the packages we have generated in pkg() that are listed in transient-packages-list
0 commit comments