9 lines
332 B
Python
9 lines
332 B
Python
from conans import tools
|
|
import requests
|
|
|
|
def pre_download_recipe(output, reference, remote, **kwargs):
|
|
raise Exception(f"recipe downloads disabled: {reference}")
|
|
|
|
def pre_download_package(output, conanfile_path, reference, package_id, remote, **kwargs):
|
|
raise Exception(f"package downloads disabled: {reference} ({package_id})")
|