INNER CODE UNIT · Shell
ERRORS
BastilleBSD/bastille · usr/local/share/bastille/bootstrap.sh:254
ERRORS=$((ERRORS + 1))
error_notify "Unable to fetch MANIFEST. See 'bootstrap urls'."
return 1
fi
# Validate already installed archives
if [ -f "${bastille_releasesdir}/${RELEASE}/COPYRIGHT" ]; then
bastille_bootstrap_archives=$(echo "${bastille_bootstrap_archives}" | sed "s/base//")
# shellcheck disable=SC2010
bastille_cached_files=$(ls "${bastille_cachedir}/${RELEASE}" | grep -v "MANIFEST" | tr -d ".txz")
for distfile in ${bastille_cached_files}; do
bastille_bootstrap_archives=$(echo "${bastille_bootstrap_archives}" | sed "s/${distfile}//")
done
if [ -z "${bastille_bootstrap_archives}" ]; then
info 1 "\nBootstrap appears complete!\n"
exit 0
fi
fi