From e72c10853c1b7ea60517c61c4f306bbfbdd9b27d Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Wed, 5 Feb 2025 12:04:06 -0500 Subject: [PATCH] Add missing "out" directory creation Swore I checked this in, but apparently not.. --- cli.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli.pl b/cli.pl index a33645c..336bc0a 100755 --- a/cli.pl +++ b/cli.pl @@ -111,10 +111,13 @@ my %library = ( } ); +mkdir "out" or die $! unless -e "out"; + my @playlists = get_playlists(); foreach my $p (\%library, @playlists) { print("Processing $p->{name}\n"); writep($p); } + exit 0; -- libgit2 1.8.1