def run_tabcmd_command()

in assets/scripts/SilentInstaller.py [0:0]


def run_tabcmd_command(tabcmd_path, args):
    ''' Runs a tabcmd command to perform setup actions '''
    try:
        run_command(tabcmd_path, args)
    except ExitCodeError as ex:
        print_error('Tabadmin exited with code %d' % ex.exit_code)
        raise ex