From 69e7d8aefb2288cd343fd3e40a32aa66a7c58465 Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 12 Jul 2018 20:49:32 -0700 Subject: [PATCH] adding ubuntu as a base image variant for package version listing --- ci/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/ci.py b/ci/ci.py index 41092dd..06d4910 100755 --- a/ci/ci.py +++ b/ci/ci.py @@ -180,7 +180,7 @@ def container_test(tag): # Dump package information if base == 'alpine': command = 'apk info -v' - elif base == 'debian': + elif base == 'debian' or base == 'ubuntu': command = 'apt list' try: info = container.exec_run(command)