commit e72c10853c1b7ea60517c61c4f306bbfbdd9b27d (patch)
parent c82c0d9450911c84fa4a7ffcd02f9cb7d85bb50e
Author: Alex Karle <alex@alexkarle.com>
Date: Wed, 5 Feb 2025 12:04:06 -0500
Add missing "out" directory creation
Swore I checked this in, but apparently not..
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git 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;