#!/usr/bin/perl

=head1 NAME

tails-update-frontend - lead Tails user through the process of updating the system, if needed

=cut

use strict;
use warnings FATAL => 'all';
use 5.10.1;

use FindBin;
use lib "$FindBin::Bin/../lib";

use Tails::IUK::Frontend;

Tails::IUK::Frontend->new_with_options()->run;
