Source code for androlyze.docker.util


# encoding: utf-8

__author__ = "Nils Tobias Schmidt"
__email__ = "schmidt89 at informatik.uni-marburg.de"

import os

from androlyze.log.Log import clilog

[docs]def run(command): clilog.info(">>> %s", command) return os.system(command)