rate/install.py

9 lines
185 B
Python
Raw Normal View History

2022-09-22 16:00:56 +00:00
#!/usr/bin/python
import os
for dir in os.listdir('.'):
if os.path.isdir(dir) and not dir.startswith('.'):
os.chdir(dir)
2022-10-10 12:07:54 +00:00
os.system('npm ci')
2022-09-22 16:00:56 +00:00
os.chdir('..')