From 3a394e0a4db55f872fae602d65a7b9ac77af94a9 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 26 Jul 2025 10:58:49 -0400 Subject: [PATCH] Fixed a bug with rc file name and location. --- ttyverse.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttyverse.pl b/ttyverse.pl index a94aafc..44519ff 100755 --- a/ttyverse.pl +++ b/ttyverse.pl @@ -126,7 +126,7 @@ BEGIN { $rc = (defined($rc) && length($rc)) ? $rc : ""; unless ($norc) { my $rcf = - ($rc =~ m#^/#) ? $rc : "$ENV{'HOME'}/.ttytterrc${rc}"; + ($rc =~ m#^/#) ? $rc : "$config/ttyverserc${rc}"; if (open(W, $rcf)) { # 5.14 sets this lazily, so this gives us a way out eval 'binmode(W, ":utf8")' unless ($seven);