processing: Call gdal_merge instead of gdal_merge.py

The latter is deprecated by gdal and it has a bogus shebang.
This commit is contained in:
Aleix Pol 2025-08-26 12:43:57 +02:00 committed by Nyall Dawson
parent bd320e3f29
commit 9ede69b396
No known key found for this signature in database
GPG Key ID: AEA7D60D3DF12896

View File

@ -266,6 +266,6 @@ class merge(GdalAlgorithm):
arguments.append(list_file)
return [
self.commandName() + (".bat" if isWindows() else ".py"),
self.commandName() + (".bat" if isWindows() else ""),
GdalUtils.escapeAndJoin(arguments),
]