Skip to content

Commit ea9ad88

Browse files
committed
Compile script priority is now folder before file
1 parent 2fadfe3 commit ea9ad88

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

release/UpdateScript.exe

2 Bytes
Binary file not shown.

tools/splitFile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
import os
55
import re
6-
sys.path.insert(1, '../')
6+
sys.path.insert(1, '../general/')
77
import ui
88

99
def splitByCreate(name):

updatescript/combineFile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ def makeScript(directory, varlist, root):
3636
# Get all files under chosen folders
3737
files = []
3838
for d in selected:
39-
onlyfiles = glob.glob(current+"\\"+d+"\\*.sql")
40-
files = files + onlyfiles
4139
onlyfiles = glob.glob(current+"\\"+d+"\\**\\*.sql")
4240
files = files + onlyfiles
41+
onlyfiles = glob.glob(current+"\\"+d+"\\*.sql")
42+
files = files + onlyfiles
4343

4444
# Create dump
4545
if files:

0 commit comments

Comments
 (0)