Rename apt requirements directory to apt

Previously ignored by the top level .gitignore, because
lib/ is a reserved directory name for python builds.
This commit is contained in:
jo 2021-08-15 14:16:55 +02:00
parent 74e271ec7b
commit 4033b20ee8
3 changed files with 1 additions and 1 deletions

View File

@ -713,7 +713,7 @@ if [ "$ignore_dependencies" = "f" ]; then
if [ -x /usr/bin/apt-get ]; then
verbose "\n * Reading requirements-${dist}-${code}.apt..."
loudCmd "apt-get -q update"
package_list_file="${SCRIPT_DIR}/installer/lib/requirements-${dist}-${code}.apt"
package_list_file="${SCRIPT_DIR}/installer/apt/requirements-${dist}-${code}.apt"
if [ ! -f "$package_list_file" ]; then
echo "ERROR: package file does not exist: $package_list_file" >&2
exit 1