aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStig-Ørjan Smelror <smelror@gmail.com>2018-05-24 23:43:18 +0200
committerStig-Ørjan Smelror <smelror@gmail.com>2018-05-24 23:43:18 +0200
commit53e37fb0b9f17f5e409e3f5991421fab76c45f6d (patch)
tree0320e60fc033af30519d8cc78dfe06b2d4fee0ab
parented5d52a600507ff3e3e32b7595466685bbda52eb (diff)
downloadiurt-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-xiurt2
1 files changed, 1 insertions, 1 deletions
diff --git a/iurt b/iurt
index f663a10..19b086d 100755
--- a/iurt
+++ b/iurt
@@ -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 = {};