nonebot-plugin-nailongremove/scripts/pub_all.py
student_2333 66a4c2e9f8
up
2024-11-12 11:29:39 +08:00

11 lines
189 B
Python

from .utils import PACKAGES_PATH, system_no_fail
def main():
for p in PACKAGES_PATH.iterdir():
system_no_fail("pdm", "publish", cwd=p)
if __name__ == "__main__":
main()