diff options
author | Stig-Ørjan Smelror <smelror@gmail.com> | 2018-05-24 23:43:18 +0200 |
---|---|---|
committer | Stig-Ørjan Smelror <smelror@gmail.com> | 2018-05-24 23:43:18 +0200 |
commit | 53e37fb0b9f17f5e409e3f5991421fab76c45f6d (patch) | |
tree | 0320e60fc033af30519d8cc78dfe06b2d4fee0ab | |
parent | ed5d52a600507ff3e3e32b7595466685bbda52eb (diff) | |
download | iurt-53e37fb0b9f17f5e409e3f5991421fab76c45f6d.tar iurt-53e37fb0b9f17f5e409e3f5991421fab76c45f6d.tar.gz iurt-53e37fb0b9f17f5e409e3f5991421fab76c45f6d.tar.bz2 iurt-53e37fb0b9f17f5e409e3f5991421fab76c45f6d.tar.xz iurt-53e37fb0b9f17f5e409e3f5991421fab76c45f6d.zip |
A small typo when it can't find a config file, line 348
-rwxr-xr-x | iurt | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -345,7 +345,7 @@ $run{distro_tag} =~ s,/,-,g; my $real_arch = `uname -m`; chomp $real_arch; my $HOME = $ENV{HOME}; -my $configfile = "$HOME/.iurt.$run{distro_tag}.conf"; +my $configfile = "$HOME/.iurt$run{distro_tag}.conf"; my $sysconfigfile = "/etc/iurt/build/$run{distro_tag}.conf"; my $config = {}; |