Adding better stock images.
This commit is contained in:
parent
cead74745b
commit
a31e710285
Binary file not shown.
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 262 KiB |
Binary file not shown.
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 515 KiB |
@ -1,5 +1,7 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
use v5.36.0;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
@ -8,4 +10,10 @@ use lib curfile->dirname->sibling('lib')->to_string;
|
||||
use Mojolicious::Commands;
|
||||
|
||||
# Start command line interface for application
|
||||
my @images = curfile->dirname->sibling('public')->child('img')
|
||||
->list->grep(qr/\.generated\.png$/)->each;
|
||||
for my $image (@images) {
|
||||
system 'rm', '-v', $image;
|
||||
}
|
||||
|
||||
Mojolicious::Commands->start_app('OwlcodeTech');
|
||||
|
Loading…
Reference in New Issue
Block a user