Add missing declaration of override_install_dir

**archiso/mkarchiso**:

In d90184a the unbound variable `override_install_dir` was introduced by accident.

It is required to be set to empty string to provide override functionality for `install_dir`.

Fixes #57
This commit is contained in:
David Runge 2020-08-25 21:56:41 +02:00
parent d90184a7f0
commit 4b401931bd
No known key found for this signature in database
GPG Key ID: 7258734B41C31549

View File

@ -33,6 +33,7 @@ iso_application="${app_name} iso"
override_iso_application="" override_iso_application=""
iso_version="" iso_version=""
install_dir="${app_name}" install_dir="${app_name}"
override_install_dir=""
arch="$(uname -m)" arch="$(uname -m)"
pacman_conf="/etc/pacman.conf" pacman_conf="/etc/pacman.conf"
override_pacman_conf="" override_pacman_conf=""