rate/build.py

9 lines
192 B
Python
Raw Normal View History

2022-09-22 17:59:25 +00:00
#!/usr/bin/python
import os
for dir in os.listdir('.'):
if os.path.isdir(dir) and not dir.startswith('.'):
os.chdir(dir)
os.system('npm run build')
os.chdir('..')