mirror of
https://github.com/openharmony/repohooks.git
synced 2026-07-01 21:44:22 -04:00
7 lines
246 B
Python
7 lines
246 B
Python
import os, sys
|
|
|
|
def main(**kwargs):
|
|
print("Execute prebuild_download", file=sys.stdout)
|
|
os.system("./build/prebuilts_download.sh")
|
|
print("Execute repo forall git lfs pull", file=sys.stdout)
|
|
os.system("repo forall -c git lfs pull") |