filters/sub-action.py

15 lines
723 B
Python
Raw Permalink Normal View History

2021-08-21 01:56:35 -04:00
import os
import sys
2021-08-21 12:12:12 -04:00
sys.path.append('/filters-maker')
2021-08-21 01:42:41 -04:00
import build_make
2021-08-21 01:56:35 -04:00
os.makedirs('/gh-releases',exist_ok=True)
2021-08-21 01:42:41 -04:00
2021-11-05 10:02:56 -04:00
build_make.filepath_mass_changer('Allowlist' ,'/reprwiki/Private-build/Allowlist' ,'/gh-releases','txt')
build_make.filepath_mass_changer('Veneto' ,'/reprwiki/Private-build/veneto' ,'/gh-releases','txt')
build_make.filepath_mass_changer('ucate' ,'/reprwiki/Private-build/ucate' ,'/gh-releases','txt')
build_make.filepath_mass_changer('Allowlist' ,'/reprwiki/Private-build/Allowlist' ,'/gh-releases','conf')
build_make.filepath_mass_changer('Veneto' ,'/reprwiki/Private-build/veneto' ,'/gh-releases','conf')
build_make.filepath_mass_changer('ucate' ,'/reprwiki/Private-build/ucate' ,'/gh-releases','conf')