mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-24 02:24:23 -05:00
29 lines
393 B
Python
29 lines
393 B
Python
from __future__ import annotations
|
|
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
def main() -> int:
|
|
subprocess.run(
|
|
[
|
|
"poetry",
|
|
"check",
|
|
"--strict",
|
|
],
|
|
check=True,
|
|
)
|
|
subprocess.run(
|
|
[
|
|
"poetry",
|
|
"lock",
|
|
],
|
|
check=True,
|
|
)
|
|
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|