Move mkroot/root to mkroot/packages.

Previous name made sense under scripts, but not under mkroot.
This commit is contained in:
Rob Landley 2023-07-27 08:44:55 -05:00
parent d06135c132
commit ec88e79aca
6 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ done
# Set default directory locations (overrideable from command line)
: ${TOP:=$PWD/root} ${BUILD:=$TOP/build} ${LOG:=$BUILD/log}
: ${AIRLOCK:=$BUILD/airlock} ${CCC:=$PWD/ccc} ${PKGDIR:=$PWD/mkroot/root}
: ${AIRLOCK:=$BUILD/airlock} ${CCC:=$PWD/ccc} ${PKGDIR:=$PWD/mkroot/packages}
announce() { printf "\033]2;$CROSS $*\007" >/dev/tty; printf "\n=== $*\n";}
die() { echo "$@" >&2; exit 1; }