mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
8 lines
218 B
Python
8 lines
218 B
Python
|
def moved_targets(targets, new_package):
|
||
|
for target in targets:
|
||
|
native.alias(
|
||
|
name=target[1:],
|
||
|
actual=new_package+target,
|
||
|
deprecation="This target has moved to %s%s"%(new_package,target),
|
||
|
)
|