diff --git a/0-Source/.gitignore b/0-Source/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/0-Source/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/1-Temp/.gitignore b/1-Temp/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/1-Temp/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/2-Out/.gitignore b/2-Out/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/2-Out/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/Start.py b/Start.py index 8a3a828..55f9ba7 100644 --- a/Start.py +++ b/Start.py @@ -19,6 +19,8 @@ for filename in os.listdir('0-Source'): input_file = os.path.join('0-Source', filename) if not os.path.isfile(input_file): continue + if filename == '.gitignore': + continue # Parse File Name temp_name = re.sub(r'\[.*?\]|\(.*?\)', "", filename).rsplit('.', 1)[0].strip()