]> git.sur5r.net Git - i3/i3/commitdiff
i3-dmenu-desktop: do not die on failed open 2266/head
authorCedric <cedric@lenovo.home>
Sun, 20 Mar 2016 11:12:11 +0000 (12:12 +0100)
committerCedric Buissart <cedric.buissart@gmail.com>
Wed, 23 Mar 2016 17:48:38 +0000 (18:48 +0100)
i3-dmenu-desktop

index a0549ead7dbb81c37991cc748f782ef2eace0f33..3b81cb20ce008097b9f3dbd412f1fd08a6ea2c87 100755 (executable)
@@ -25,7 +25,11 @@ binmode STDERR, ':utf8';
 # reads in a whole file
 sub slurp {
     my ($filename) = @_;
-    open(my $fh, '<', $filename) or die "$!";
+    my $fh;
+    if (!open($fh, '<', $filename)) {
+        warn "Could not open $filename: $!";
+        return undef;
+    }
     local $/;
     my $result;
     eval {