diff --git a/public/img/contact-background.webp b/public/img/contact-background.webp index 5a7a050..13788ce 100644 Binary files a/public/img/contact-background.webp and b/public/img/contact-background.webp differ diff --git a/public/img/future.webp b/public/img/future.webp index 8183a72..5294db9 100644 Binary files a/public/img/future.webp and b/public/img/future.webp differ diff --git a/script/owlcode.tech b/script/owlcode.tech index 347dc49..53cf1ed 100755 --- a/script/owlcode.tech +++ b/script/owlcode.tech @@ -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');