fix error string (apt is part of the required variant)

This commit is contained in:
Johannes 'josch' Schauer 2018-10-22 15:04:25 +02:00
parent 1409405af7
commit 27f10e2300
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -1270,7 +1270,7 @@ sub main() {
} }
if ($options->{variant} eq 'essential' and defined $options->{include}) { if ($options->{variant} eq 'essential' and defined $options->{include}) {
die "cannot install extra packages in essential and required variants because apt is missing"; die "cannot install extra packages with variant essential because apt is missing";
} }
my ($nativearch, @foreignarchs) = split /,/, $options->{architectures}; my ($nativearch, @foreignarchs) = split /,/, $options->{architectures};