mirror of
https://github.com/Refound-445/nonebot-plugin-nailongremove.git
synced 2025-11-04 21:22:43 +08:00
11 lines
189 B
Python
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()
|