Skip to content

Commit

Permalink
"port"+test debian-package-building script to ubuntu 24,04; maybe we …
Browse files Browse the repository at this point in the history
…can prep a PPA later
  • Loading branch information
shlomif committed Jul 17, 2024
1 parent 1e84a9d commit 2bf43fa
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@
use Path::Tiny qw/ cwd /;
use Docker::CLI::Wrapper::Container v0.0.4 ();

my $obj = Docker::CLI::Wrapper::Container->new(
{ container => "fortune-mod--deb--test-build", sys => "debian:sid", } );
my $UBUNTU = 1;
my $obj = Docker::CLI::Wrapper::Container->new(
$UBUNTU
? {
container => "fortune-mod--ubuntu--test-build",
sys => "ubuntu:24.04",
}
: { container => "fortune-mod--deb--test-build", sys => "debian:sid", }
);

my $USER = "mygbp";
my $HOMEDIR = "/home/$USER";
Expand Down

0 comments on commit 2bf43fa

Please sign in to comment.