We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58910ca commit b026f10Copy full SHA for b026f10
.ci/make_test_base
@@ -27,7 +27,7 @@ if exitcode:
27
sys.exit(exitcode)
28
# Collect extra config option
29
addopts={}
30
-for module in glob.glob("contrib/*"):
+for module in sorted(glob.glob("contrib/*"), cmp = lambda a,b: 1 if a=="pg_pathman" else -1):
31
if not os.path.isdir(module):
32
continue
33
if not os.access(module+"/Makefile",os.R_OK):
@@ -56,7 +56,7 @@ for module in glob.glob("contrib/*"):
56
else:
57
addopts[opt]=value
58
59
-if addopts:
+if addopts:
60
with open(datadir+"/postgresql.conf","a") as f:
61
for opt,value in addopts.items():
62
print >> f,"%s=%s"%(opt,value)
0 commit comments