Ejemplo n.º 1
0
def community(ctx, force, branch, filepath):
    """Fetch supplies from the Cuckoo Community."""
    init_console_logging(level=ctx.parent.level)
    try:
        fetch_community(force=force, branch=branch, filepath=filepath)
        log.info("Finished fetching & extracting the community files!")
    except KeyboardInterrupt:
        print(yellow("Aborting fetching of the Cuckoo Community resources.."))
Ejemplo n.º 2
0
def community(ctx, force, branch, filepath):
    """Fetch supplies from the Cuckoo Community."""
    init_console_logging(level=ctx.parent.level)
    try:
        fetch_community(force=force, branch=branch, filepath=filepath)
        log.info("Finished fetching & extracting the community files!")
    except KeyboardInterrupt:
        print(yellow("Aborting fetching of the Cuckoo Community resources.."))
Ejemplo n.º 3
0
def community(force, branch, filepath):
    """Fetch supplies from the Cuckoo Community."""
    try:
        fetch_community(force=force, branch=branch, filepath=filepath)
    except KeyboardInterrupt:
        print(yellow("Aborting fetching of the Cuckoo Community resources.."))