diff options
| author | David Runge <dvzrv@archlinux.org> | 2020-08-25 21:56:41 +0200 |
|---|---|---|
| committer | David Runge <dvzrv@archlinux.org> | 2020-08-25 22:02:50 +0200 |
| commit | 4b401931bde9d9caf7348da0d8c883802722f61f (patch) | |
| tree | 4c0cd19deee707b8e44cfdde425733f000c4f05c | |
| parent | d90184a7f06c277b0749833c1690a31abfdca2fd (diff) | |
| download | archiso-4b401931bde9d9caf7348da0d8c883802722f61f.tar.gz archiso-4b401931bde9d9caf7348da0d8c883802722f61f.tar.bz2 | |
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
| -rwxr-xr-x | archiso/mkarchiso | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 0318aa6..d2f8feb 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -33,6 +33,7 @@ iso_application="${app_name} iso" override_iso_application="" iso_version="" install_dir="${app_name}" +override_install_dir="" arch="$(uname -m)" pacman_conf="/etc/pacman.conf" override_pacman_conf="" |
