#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
# Copyright (c) 2019-2020 Max Rees
# See LICENSE for more information.
import sys      # argv, exit

import apkfoundry.container # cont_make
import apkfoundry._log as _log

_log.init()
cont = apkfoundry.container.cont_make(sys.argv[1:])
if not cont:
    sys.exit(1)
