#! /usr/bin/python3 -sP
# -*- encoding: utf-8 -*-

from __future__ import print_function

import os
import sys

here = sys.path[0]
if here != "/usr/bin":
    sys.path[0] = os.path.dirname(here)

from compose_utils import has_build

if __name__ == "__main__":
    has_build()
