Skip to content

Commit

Permalink
[gdal] fix gdal_merge (from G. Sucameli)
Browse files Browse the repository at this point in the history
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@93 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
julien.malik@gmail.com committed Apr 14, 2012
1 parent 6e4bff4 commit b25bf6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sextante/gdal/merge.py
Expand Up @@ -28,9 +28,9 @@ def defineCharacteristics(self):

def processAlgorithm(self, progress):
if SextanteUtils.isWindows():
commands = ["cmd.exe", "/C ", "merge.bat"]
commands = ["cmd.exe", "/C ", "gdal_merge.bat"]
else:
commands = ["merge.py"]
commands = ["gdal_merge.py"]
if self.getParameterValue(merge.SEPARATE):
commands.append("-separate")
if self.getParameterValue(merge.PCT):
Expand Down

0 comments on commit b25bf6f

Please sign in to comment.