示例#1
0
文件: main.py 项目: swackhamer/cuckoo
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.."))
示例#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.."))
示例#3
0
文件: main.py 项目: songofhack/cuckoo
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.."))