From bb8b79e0313fbf7bb2762a791406548323e98ffe Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Tue, 25 Jun 2019 19:05:38 +0100 Subject: [PATCH] Don't warn when .stowrc is used We fully support and expect some users using .stowrc, so there is no reason to issue a warning when they do. --- bin/stow.in | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/stow.in b/bin/stow.in index d64c381..56fc8fb 100755 --- a/bin/stow.in +++ b/bin/stow.in @@ -604,7 +604,6 @@ sub get_config_file_options { my @defaults = (); for my $file ("$ENV{HOME}/.stowrc", '.stowrc') { if (-r $file) { - warn "Loading defaults from $file\n"; open my $FILE, '<', $file or die "Could not open $file for reading\n"; while (my $line = <$FILE>){