bob 0.9.0

A pkgsrc package builder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
#
# Script executed after every build, regardless of whether the build was
# successful or a failure.  Also runs after the scan phase has completed.
#
# This script should ensure that nothing exists inside the sandbox that wasn't
# there to start with, both so that subsequent builds are not affected by
# leftovers and also so that the sandbox can be cleanly unmounted and removed
# (empty directories are ok).
#
rm -rf "${bob_prefix}" "${bob_pkg_dbdir}" \
    "${bob_pkg_refcount_dbdir}" 2>/dev/null || true